Skip to content

More tests

More tests #4

Workflow file for this run

name: Our CI
on:
pull_request:
push:
workflow_dispatch:
jobs:
test:
name: Run tests
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.12"]
include:
- os: macos-14
python-version: "3.9"
runs-on: ${{ matrix.os }}
steps:
- run: echo Hello World
- uses: actions/checkout@v4
- name: Install python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install .[test]
- name: Run test
- run: python -m pytest