Skip to content

Fix typo

Fix typo #111

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 --with dev
- name: Run linters
run: |
./lint.sh