Skip to content

Added pytest dependency and run command to test.yml, moved the tests … #26

Added pytest dependency and run command to test.yml, moved the tests …

Added pytest dependency and run command to test.yml, moved the tests … #26

Workflow file for this run

on: push
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: check out repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
- name: Test with pytest
run: python -m pytest --doctest-modules