Skip to content

Update project structure #38

Update project structure

Update project structure #38

Workflow file for this run

name: Lint and test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
os:
- 'ubuntu-24.04'
- 'windows-2022'
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r dev-requirements.txt
- name: Lint with flake8
run: |
flake8
- name: Test with unittest
run: |
python -m unittest