Skip to content

Updata data for 0.1.0 release #34

Updata data for 0.1.0 release

Updata data for 0.1.0 release #34

Workflow file for this run

name: Run Python tests
on: [push, pull_request]
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.0-beta.3"]
steps:
- uses: szenius/set-timezone@v1.1
with:
timezoneLinux: "Europe/Berlin"
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install pytest pytest-md pytest-emoji pytest-mypy
- uses: pavelzw/pytest-action@v2
with:
verbose: true
emoji: true
job-summary: true
click-to-expand: true
report-title: 'Test Report'
- uses: pavelzw/pytest-action@v2
with:
verbose: true
emoji: true
job-summary: true
click-to-expand: true
custom-arguments: '--mypy -m mypy pymvr/*py'
report-title: 'Typing Test Report'