Skip to content

Update Python versions and use Github actions for builds #6

Update Python versions and use Github actions for builds

Update Python versions and use Github actions for builds #6

Workflow file for this run

name: Linting
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: flake8
run: |
flake8