-
Notifications
You must be signed in to change notification settings - Fork 10
39 lines (34 loc) · 1.06 KB
/
conformance.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
name: Self-test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: "10 10 * * *"
jobs:
selftest:
strategy:
matrix:
include:
- { sigstore-env: production, skip-cpython-release-tests: false }
- { sigstore-env: production, skip-cpython-release-tests: true }
- { sigstore-env: staging, skip-cpython-release-tests: false }
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
cache: "pip"
- name: install sigstore-python
run: pip install "sigstore >= 3.5.0, < 4.0"
- name: conformance test sigstore-python
uses: ./
with:
entrypoint: ${{ github.workspace }}/sigstore-python-conformance
skip-cpython-release-tests: ${{ matrix.skip-cpython-release-tests }}
environment: ${{ matrix.sigstore-env }}
xfail: "test_verify_with_trust_root test_verify_dsse_bundle_with_trust_root"