diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f12c467..e55d3e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,17 @@ permissions: contents: read jobs: + static: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + persist-credentials: false + - name: Check GitHub Actions syntax + run: docker run --rm -v "$PWD:/repo" -w /repo rhysd/actionlint:1.7.9 + - name: Check test script syntax + run: find test -type f -name '*.sh' -print0 | xargs -0 -n1 bash -n + test: runs-on: ubuntu-latest steps: