-
-
Notifications
You must be signed in to change notification settings - Fork 73
28 lines (28 loc) · 614 Bytes
/
ci.yml
File metadata and controls
28 lines (28 loc) · 614 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
name: CI
on:
push:
branches:
- main
pull_request:
repository_dispatch:
types: [automated-update-trigger]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.14", "3.15" ]
fail-fast:
false
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
check-latest: true
allow-prereleases: true
- name: Lint
run: make lint
- name: Tests
run: make test