Skip to content

fix lint

fix lint #41

Workflow file for this run

name: Lint test
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Make lint script executable
run: chmod +x ci/lint.sh
- name: Run lint script
run: ci/lint.sh