Skip to content

Bump actions/setup-python from 4 to 5 #2

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #2

Workflow file for this run

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
pull_request:
branches:
- main
workflow_dispatch:
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Python dependencies
run: pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v2
with:
black: true
flake8: true