Skip to content

Commit 0cbd980

Browse files
committed
init ci workflow
1 parent 856af6a commit 0cbd980

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/ci.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches:
12+
- main
13+
- '[0-9]+.[0-9]+.x'
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

Comments
 (0)