Skip to content

Merge pull request #5 from shannami/CItest #2

Merge pull request #5 from shannami/CItest

Merge pull request #5 from shannami/CItest #2

Workflow file for this run

name: Tests
on: push
jobs:
built:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Tests with pytest
run: |
python -m pytest