change array-like configuration values to multi-options (fixes #246, … #623
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: static-analysis | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: run linting | |
run: | | |
export PATH="/usr/share/miniconda/bin:${PATH}" | |
conda install \ | |
--yes \ | |
-c conda-forge \ | |
pre-commit \ | |
requests \ | |
types-requests \ | |
yamllint | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends -y \ | |
shfmt | |
make lint |