We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d031bce commit 72a1d29Copy full SHA for 72a1d29
.github/workflows/ci.yml
@@ -2,6 +2,8 @@ name: CI
2
3
on:
4
push:
5
+ branches-ignore:
6
+ - "wip*"
7
tags:
8
- "v*"
9
pull_request:
@@ -10,6 +12,7 @@ on:
10
12
schedule:
11
13
# Daily at 8:33
14
- cron: "33 8 * * *"
15
+ workflow_dispatch:
16
17
env:
18
PIP_DISABLE_PIP_VERSION_CHECK: "1"
@@ -33,6 +36,7 @@ jobs:
33
36
ci:
34
37
needs: list
35
38
runs-on: ubuntu-latest
39
+
40
strategy:
41
fail-fast: false
42
matrix:
@@ -64,8 +68,11 @@ jobs:
64
68
pypy3.10
65
69
allow-prereleases: true
66
70
cache: pip
71
+ - name: Set up uv
72
+ uses: hynek/setup-cached-uv@v1
67
73
- name: Set up nox
- uses: wntrblm/[email protected]
74
+ uses: wntrblm/[email protected]
75
76
- name: Run nox
77
run: nox -s "${{ matrix.noxenv }}" -- ${{ matrix.posargs }}
78
0 commit comments