Bump cpython artifacts #496
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Self-test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: "10 10 * * *" | |
jobs: | |
selftest: | |
strategy: | |
matrix: | |
sigstore-env: [production, staging] | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
- name: install sigstore-python | |
run: pip install "sigstore >= 3.3.0, < 4.0" | |
- name: conformance test sigstore-python | |
uses: ./ | |
with: | |
entrypoint: ${{ github.workspace }}/sigstore-python-conformance | |
environment: ${{ matrix.sigstore-env }} | |
xfail: "test_verify_with_trust_root test_verify_dsse_bundle_with_trust_root" |