mirror of
https://github.com/infeeeee/dyn2py
synced 2025-12-17 22:26:19 +01:00
35 lines
704 B
YAML
35 lines
704 B
YAML
name: Unit tests
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
tests:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest]
|
|
python-version: [3.8, 3.9, "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 }}
|
|
|
|
- name: Install deps
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install .
|
|
|
|
- name: Test
|
|
run: python -m unittest discover -v -s ./tests -p "test_*.py"
|