Skip to content

[ci] enforce shfmt checks #412

[ci] enforce shfmt checks

[ci] enforce shfmt checks #412

Workflow file for this run

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@v3
with:
fetch-depth: 1
- name: run linting
run: |
export PATH="/usr/share/miniconda/bin:${PATH}"
conda install \
--yes \
-c conda-forge \
black \
isort \
'mypy>=0.931' \
requests \
ruff \
shellcheck \
types-requests
apt-get update
apt-get install --no-install-recommends -y \
shfmt
make lint