Skip to content

Python version updates for CI/CD #27

Python version updates for CI/CD

Python version updates for CI/CD #27

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.10', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install venv and dependencies
run: ./setup.sh
- name: Tests
run: ./run-tests.sh