Skip to content

github actions adv: python-matrix.yml fix #3

github actions adv: python-matrix.yml fix

github actions adv: python-matrix.yml fix #3

Workflow file for this run

name: Python Lint
on:
push:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: install libraries & dependencies
run: pip install -r requirements.txt
- name: run linter
run: flake8 app.py