Skip to content

Bump codecov/codecov-action from 4.5.0 to 4.6.0 in the actions group #1019

Bump codecov/codecov-action from 4.5.0 to 4.6.0 in the actions group

Bump codecov/codecov-action from 4.5.0 to 4.6.0 in the actions group #1019

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Python dependencies
run: pip install black
- name: Run linters
uses: wearerequired/lint-action@v2
with:
auto_fix: true
black: true
black_auto_fix: true