diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2024-03-05 11:36:41 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2024-03-05 11:36:41 +0100 |
| commit | 436a14d46c6f7d4a74f197c02903e11644d5db92 (patch) | |
| tree | 47b61e92bd880024ada80049bc36e60b59dd4a09 /.github | |
| parent | 0b9ac24b94b99e290fae551fdbea4d8e0ed65d9b (diff) | |
| parent | c26fab67d5e90cf1fb311b5315f84e48fddc88fa (diff) | |
| download | mullvadvpn-436a14d46c6f7d4a74f197c02903e11644d5db92.tar.xz mullvadvpn-436a14d46c6f7d4a74f197c02903e11644d5db92.zip | |
Merge remote-tracking branch 'origin/run-shellcheck-in-ci-des-593'
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/shellcheck.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml new file mode 100644 index 0000000000..e340123541 --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,17 @@ +on: + pull_request: + workflow_dispatch: + +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@2.0.0 + with: + ignore_paths: >- + ./android/gradlew + env: + SHELLCHECK_OPTS: --external-sources |
