-
Notifications
You must be signed in to change notification settings - Fork 28
113 lines (95 loc) · 3.24 KB
/
validations.yaml
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: "Validations"
on:
# needed for publishing commit images on the main branch
push:
branches:
- main
# needed when running from forks
pull_request:
jobs:
# note: the name for this check is referenced in release.yaml, do not change here without changing there
Static-Analysis:
name: "Static Analysis"
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
with:
# in order to properly resolve the version from git
fetch-depth: 0
- name: Bootstrap environment
uses: ./.github/actions/bootstrap
- name: Run static analysis
run: poetry run make static-analysis
# - name: Ensure quality gate tools are properly configured
# run: |
# cd tests/quality && make validate-test-tool-versions
Test:
runs-on: ubuntu-22.04
permissions:
contents: read
strategy:
matrix:
# note: this is not a single source of truth (this is also in the tox.ini)
python:
- version: '3.11'
toxEnv: py311
- version: '3.12'
toxEnv: py312
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
with:
# in order to properly resolve the version from git
fetch-depth: 0
- name: Bootstrap environment
uses: ./.github/actions/bootstrap
with:
python-version: ${{ matrix.python.version }}
- name: Run unit tests
run: poetry run tox -e ${{ matrix.python.toxEnv }}
- name: Build assets
run: poetry run make build
# this is to help facilitate ensuring all checks have run with the checks API for release
# see https://github.com/orgs/community/discussions/26822#discussioncomment-3305794
# as well as the release.yaml workflow
Test-Gate:
if: ${{ always() }}
runs-on: ubuntu-22.04
name: Test Gate
needs: [test]
steps:
- run: |
result="${{ needs.Test.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 1
fi
Publish-PreProd:
runs-on: ubuntu-22.04
needs: [Static-Analysis, Test]
if: github.ref == 'refs/heads/main'
permissions:
contents: read
# package write permission is needed for publishing commit images
packages: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
with:
# in order to properly resolve the version from git
fetch-depth: 0
- name: Bootstrap environment
uses: ./.github/actions/bootstrap
- name: Login to ghcr.io
run: |
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io --username ${{ github.actor }} --password-stdin
- name: Build assets
run: poetry run make build
- name: Publish commit image
run: make ci-publish-commit
- name: Publish to test PyPI
run: make ci-publish-testpypi
env:
# note: "..._TESTPYPI" suffix should match the name of the testpypi repository (see the Makefile target)
POETRY_PYPI_TOKEN_TESTPYPI: ${{ secrets.TEST_PYPI_TOKEN }}