Skip to content

[MOD] Troubleshooting mirroring #5

[MOD] Troubleshooting mirroring

[MOD] Troubleshooting mirroring #5

Workflow file for this run

name: lint
on:
push:
jobs:
lint:
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: python -m pip install tox
- name: Execute linter
run: tox -e lint