mirror of
https://github.com/d0zingcat/ghost-docker.git
synced 2026-05-13 15:09:34 +00:00
- This script handles the copy of both assets and the MySQL database from an existing install to a new Docker based install - Its currently been tested on the "happy path" of a Ghost CLI install and works
17 lines
278 B
YAML
17 lines
278 B
YAML
---
|
|
name: "ShellCheck"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: ShellCheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run ShellCheck
|
|
run: find . -type f -name "*.sh" -exec shellcheck {} +
|