We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 856af6a commit 0cbd980Copy full SHA for 0cbd980
.github/workflows/ci.yml
@@ -0,0 +1,38 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - '[0-9]+.[0-9]+.x'
8
+ tags:
9
+ - v[0-9]+.[0-9]+.[0-9]+
10
+ pull_request:
11
12
13
14
15
+concurrency:
16
+ group: ${{ github.workflow}}-${{ github.head_ref }}
17
+ cancel-in-progress: true
18
19
+jobs:
20
+ Builds:
21
+ uses: ./.github/workflows/packages.yml
22
23
+ # TestsPyPI:
24
+ # needs: Builds
25
+ # uses: ./.github/workflows/tests-pypi.yml
26
+ # with:
27
+ # install-flags: --no-index --find-links ./wheelhouse/
28
+ # download-name:
29
30
+ # TestsSDist:
31
32
+ # TestsConda:
33
34
+ # Docs:
35
36
+ # Lint?:
37
38
+ # Release?:
0 commit comments