-
Notifications
You must be signed in to change notification settings - Fork 53
33 lines (30 loc) · 872 Bytes
/
tests.yml
File metadata and controls
33 lines (30 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Run tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
- name: Run tests
run: |
./test.sh
simple-primer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
- name: Run tests
run: |
uv run mypy_primer --debug -k hauntsaninja --coverage
uv run mypy_primer --debug -k hauntsaninja --type-checker mypy --new v1.15 --old v1.15
uv run mypy_primer --debug -k hauntsaninja --type-checker pyright --new 1.1.400 --old 1.1.400
uv run mypy_primer --debug -k hauntsaninja --measure-project-runtimes