Skip to content

Bump peter-evans/create-pull-request from 6.0.4 to 6.0.5 #403

Bump peter-evans/create-pull-request from 6.0.4 to 6.0.5

Bump peter-evans/create-pull-request from 6.0.4 to 6.0.5 #403

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Setup Miniconda
uses: conda-incubator/[email protected]
- name: Install dependencies
run: |
conda install -c conda-forge shellcheck
- name: Shellcheck
run: |
echo "::add-matcher::.github/shellcheck-matcher.json"
shellcheck --format=gcc $(find . -iname "*.sh")
echo "::remove-matcher owner=shellcheck::"