Skip to content

Merge pull request #12 from traveltime-dev/extend/readme #94

Merge pull request #12 from traveltime-dev/extend/readme

Merge pull request #12 from traveltime-dev/extend/readme #94

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Unit Tests
on:
push:
branches: [master]
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 1
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Package with dependencies
run: |
pip install -e ".[test]"
- name: Lint with flake8
run: |
flake8 --max-line-length=127
- name: Formatting check with black
run: |
black . --check --diff
- name: Type check with mypy
run: |
mypy --install-types --non-interactive .
mypy .
- name: Test with pytest
run: |
pytest