Skip to content

Bump github action lib versions #63

Bump github action lib versions

Bump github action lib versions #63

Workflow file for this run

#
# Run continuous integration tests
#
#
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
citest:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-22.04, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install self and dependencies
run: |
pip install -e ./
- name: Run tests
run: |
python ./tests/unit/run_all_tests.py