Skip to content

WIP: CI: Update Codecov Github Action to v5 #96

WIP: CI: Update Codecov Github Action to v5

WIP: CI: Update Codecov Github Action to v5 #96

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Install linters
run: |
pip install isort flake8
- name: Run linters
run: |
isort -q -c -rc .
flake8