Skip to content

add Ribasim Python

add Ribasim Python #2

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@v3
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2
- 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::"