-
Notifications
You must be signed in to change notification settings - Fork 6
42 lines (42 loc) · 1.19 KB
/
pull-request-commit.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
name: pull-request-commit
on:
pull_request:
branches: ['main']
jobs:
call-lint:
uses: ./.github/workflows/workflow-lint.yml
call-build:
strategy:
matrix:
pyver: ['3.10', '3.11', '3.12']
os: ['ubuntu-latest']
include:
- pyver: '3.10'
os: 'windows-latest'
uses: ./.github/workflows/workflow-build.yml
with:
pyver: ${{ matrix.pyver }}
os: ${{ matrix.os }}
call-test:
needs: [call-build]
strategy:
matrix:
pyver: ['3.10', '3.11', '3.12']
os: ['ubuntu-latest']
include:
- pyver: '3.10'
os: 'windows-latest'
uses: ./.github/workflows/workflow-test.yml
with:
pyver: ${{ matrix.pyver }}
os: ${{ matrix.os }}
call-pages:
needs: [call-build]
strategy:
matrix:
pyver: ['3.10']
os: ['ubuntu-latest']
uses: ./.github/workflows/workflow-pages.yml
with:
pyver: ${{ matrix.pyver }}
os: ${{ matrix.os }}