-
Notifications
You must be signed in to change notification settings - Fork 8
57 lines (51 loc) · 1.4 KB
/
e2e.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
name: e2e
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
go-versions:
name: "lookup go versions"
runs-on: ubuntu-latest
outputs:
go-mod-version: ${{ steps.versions.outputs.go-mod-version }}
steps:
- uses: actions/checkout@v4
- uses: arnested/go-version-action@v1
id: versions
clientauth:
name: "clientauth test"
needs: go-versions
uses: ./.github/workflows/clientauth-test.yml
secrets: inherit
with:
go-version: ${{ fromJSON(needs.go-versions.outputs.go-mod-version) }}
caname-id:
name: "ca name/id tests"
needs: go-versions
uses: ./.github/workflows/caname-id-test.yml
secrets: inherit
with:
go-version: ${{ fromJSON(needs.go-versions.outputs.go-mod-version) }}
signer:
name: "signer test"
needs: go-versions
uses: ./.github/workflows/signer-tests.yml
secrets: inherit
with:
go-version: ${{ fromJSON(needs.go-versions.outputs.go-mod-version) }}
pkey:
name: "pkey tests"
needs: go-versions
uses: ./.github/workflows/pkey-tests.yml
secrets: inherit
with:
go-version: ${{ fromJSON(needs.go-versions.outputs.go-mod-version) }}
san:
name: "san test"
needs: go-versions
uses: ./.github/workflows/san-test.yml
secrets: inherit
with:
go-version: ${{ fromJSON(needs.go-versions.outputs.go-mod-version) }}