Skip to content

ci: adds main.yaml (#42) #1

ci: adds main.yaml (#42)

ci: adds main.yaml (#42) #1

Workflow file for this run

name: Main
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: make
- run: make install