Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Merge pull request #33 from mhvis/maarten-fix-dockerfile #45

Merge pull request #33 from mhvis/maarten-fix-dockerfile

Merge pull request #33 from mhvis/maarten-fix-dockerfile #45

Workflow file for this run

name: Lint and test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
os:
- 'ubuntu-latest'
- 'windows-latest'
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
exclude:
- os: 'windows-latest'
python-version: '3.8'
- os: 'windows-latest'
python-version: '3.9'
- os: 'windows-latest'
python-version: '3.10'
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