-
Notifications
You must be signed in to change notification settings - Fork 6
43 lines (34 loc) · 964 Bytes
/
future-compat.yml
File metadata and controls
43 lines (34 loc) · 964 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
34
35
36
37
38
39
40
41
42
43
name: Future Compat
on:
schedule:
- cron: "0 3 * * 1"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: future-compat-${{ github.ref }}
cancel-in-progress: true
jobs:
test-prerelease:
runs-on: ubuntu-latest
timeout-minutes: 20
continue-on-error: true
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78
with:
enable-cache: true
- name: Set up Python prerelease
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: "3.15"
allow-prereleases: true
- name: Sync test environment
run: uv sync --group dev --group typecheck
- name: Run smoke gates
run: |
make lint
make typecheck
make test-quick