Skip to content

Bump codecov/codecov-action from 4 to 5 in the actions group #609

Bump codecov/codecov-action from 4 to 5 in the actions group

Bump codecov/codecov-action from 4 to 5 in the actions group #609

Workflow file for this run

---
name: lint
on:
push:
paths-ignore:
- '**.md'
- '**.cff'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
run: |
pip install --upgrade pip
pip install .[test]
pip install pylint
- name: pylint
run: |
pylint -v --recursive=True acro test --fail-under 10
...