Skip to content

Test if macos-14 runners work #402

Test if macos-14 runners work

Test if macos-14 runners work #402

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::"