Skip to content

Release version 0.4.3 #203

Release version 0.4.3

Release version 0.4.3 #203

Workflow file for this run

name: MWRpy tests
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
pip install .[test]
- name: Test with pytest-flakefinder
run: |
pytest --flake-finder --flake-runs=2
- name: Lint with pylint
run: |
pylint mwrpy
pylint tests
- name: Typecheck with mypy
run: |
mypy mwrpy
mypy tests