Skip to content

🎉 Initial MVP

🎉 Initial MVP #6

Workflow file for this run

name: Test
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
python-version: ["3.11", "3.12" ]
steps:
- name: Checkout the code
uses: actions/checkout@v4
with:
# Need fetch-depth 0 for generating version based on tags/commits since tag
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Deps
run: make setup
- name: Lint
run: make lint
- name: Run tests
run: make test