Skip to content

Move data files

Move data files #14

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
- '!main'
defaults:
run:
shell: pwsh
jobs:
ci:
name: CI
runs-on: Ubuntu-Latest
strategy:
matrix:
version: [3.9, 3.10, 3.11]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version}}
- name: Setup Project
run: setup.sh
- name: Run Test Suite
run: pytest