Skip to content

Commit

Permalink
add github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
pkelaita committed Apr 21, 2024
1 parent 739a33f commit 78c1b04
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: tests

on:
pull_request:
push:
branches:
- main
release:

env:
default-python: "3.12"
minimum-supported-python: "3.8"

jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install dependencies
run: make init

- name: Run lint
run: make lint

- name: Run typecheck
run: make typecheck

- name: Run tests
run: make test

0 comments on commit 78c1b04

Please sign in to comment.