forked from bluesky/ophyd-async
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (51 loc) · 1.39 KB
/
ci.yml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CI
on:
push:
pull_request:
jobs:
check:
uses: ./.github/workflows/_check.yml
lint:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_tox.yml
with:
tox: pre-commit,type-checking
# test:
# needs: check
# if: needs.check.outputs.branch-pr == ''
# strategy:
# matrix:
# runs-on: ["ubuntu-latest", "windows-latest"] # can add macos-latest
# python-version: ["3.10","3.11","3.12"]
# include:
# # Include one that runs in the dev environment
# - runs-on: "ubuntu-latest"
# python-version: "dev"
# fail-fast: false
# uses: ./.github/workflows/_test.yml
# with:
# runs-on: ${{ matrix.runs-on }}
# python-version: ${{ matrix.python-version }}
# secrets:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# docs:
# needs: check
# if: needs.check.outputs.branch-pr == ''
# uses: ./.github/workflows/_docs.yml
# dist:
# needs: check
# if: needs.check.outputs.branch-pr == ''
# uses: ./.github/workflows/_dist.yml
# pypi:
# if: github.ref_type == 'tag'
# needs: dist
# uses: ./.github/workflows/_pypi.yml
# permissions:
# id-token: write
# release:
# if: github.ref_type == 'tag'
# needs: [dist, docs]
# uses: ./.github/workflows/_release.yml
# permissions:
# contents: write