Skip to content

Update CI for lint

Update CI for lint #95

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
strategy:
fail-fast: false
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install -y shellcheck shfmt
curl -sSL https://install.python-poetry.org | python3 -
poetry install
- name: Run linters
run: |
source .venv/bin/activate && ./lint.sh