-
Notifications
You must be signed in to change notification settings - Fork 8
89 lines (79 loc) · 2.24 KB
/
pr.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: PR
run-name: "PR - (#${{ github.event.number }}) ${{ github.event.pull_request.title }}"
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
- ready_for_review
branches: main
permissions:
contents: read
jobs:
pyversion:
name: Discover minimum Python version
uses: ./.github/workflows/_discover_python_ver.yml
code_format:
name: Formatting and security
needs: pyversion
uses: ./.github/workflows/sub_format.yml
with:
python_version: ${{ needs.pyversion.outputs.pyversion }}
unit_tests:
name: Unit Tests
needs: pyversion
permissions:
contents: write
uses: ./.github/workflows/sub_unittest.yml
with:
python_version: ${{ needs.pyversion.outputs.pyversion }}
documentation_check:
name: API documentation
needs: pyversion
uses: ./.github/workflows/sub_docs.yml
with:
python_version: ${{ needs.pyversion.outputs.pyversion }}
docker_image_test_build:
name: Build Docker image
needs: pyversion
uses: ./.github/workflows/_docker.yml
permissions:
contents: read
packages: read # since publish is false, read access is ok
with:
publish: false
python_version: ${{ needs.pyversion.outputs.pyversion }}
store_documentation:
name: Fetch the updated documentation
needs:
- code_format
- unit_tests
- documentation_check
- docker_image_test_build
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: pack the documentation
working-directory: docs
run: tar --exclude .DS_Store --exclude sidebars.js -cvf documentation.tar *
- name: upload the documentation artifact
uses: actions/upload-artifact@v4
with:
name: documentation
path: docs/documentation.tar
store_pr_details:
name: Upload PR details to artifact
runs-on: ubuntu-latest
steps:
- name: save PR details
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
echo ${{ github.event.pull_request.head.ref }} > ./pr/HEAD_REF
- uses: actions/upload-artifact@v4
with:
name: pr
path: pr/