diff --git a/.circleci/config.yml b/.circleci/config.yml index 5fc2457..cbf0d76 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,6 @@ version: 2.1 orbs: - shellcheck: circleci/shellcheck@1.3.15 docker: agilepathway/docker@0.5.3 executors: @@ -12,7 +11,6 @@ executors: workflows: build-and-publish-docker-image: jobs: - - shellcheck/check - go-test - compile-mage-scripts - docker/publish: diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index 57e78dc..7317c27 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -28,3 +28,19 @@ jobs: with: github_token: ${{ secrets.github_token }} reporter: github-check + + name: reviewdog + + shellcheck: + name: runner / shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: shellcheck + uses: reviewdog/action-shellcheck@v1 + with: + github_token: ${{ secrets.github_token }} + reporter: github-check + path: "." + pattern: "*.sh" + exclude: "./.git/*"