Skip to content

DavidBuchanan314 is running tests #19

DavidBuchanan314 is running tests

DavidBuchanan314 is running tests #19

Workflow file for this run

name: Run tests
run-name: ${{ github.actor }} is running tests
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install millipds python module
run: |
python3 -m pip install .[test]
- name: Run the tests
run: |
python3 -m pytest tests/integration_test.py