updated changelog #365
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: Unit Test Check | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
unittest-pytest: | |
runs-on: ubuntu-latest | |
name: Unit Tests | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v3 | |
- name: Set up Python environment | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.11" | |
- name: Set up ARM runner | |
uses: pguyot/arm-runner-action@v2 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip build wheel | |
pip install .[dev] | |
- name: Test with pytest | |
run: | | |
pytest |