diff options
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b858fd3..cccbfbe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,10 +2,16 @@ name: Shellcheck on: [push] jobs: build: - runs-on: [ubuntu-latest, macOS-latest] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Run shellcheck. run: | shellcheck pfetch sh pfetch + runs-on: macOS-latest + steps: + - uses: actions/checkout@v1 + - name: Run shellcheck. + run: | + sh pfetch |
