Skip to content

Start of an integration test harness #38

Start of an integration test harness

Start of an integration test harness #38

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.15, 3.11.10, 3.12.6]
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 venv and dependencies
run: ./setup.sh
- name: pylint
run: ./run-pylint.sh
- name: Tests
run: ./run-tests.sh
- name: Integration Tests
run: ./run-integration-tests