Set version to 0.7.3. #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run-tests | |
on: push | |
jobs: | |
run_tests: | |
name: Run unittests | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11'] | |
os: [macos-12, windows-2022] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install requirements | |
run: | | |
python -V | |
pip install -e .[test] | |
- name: Execute tests | |
run: | | |
python -m unittest discover tests |