Skip to content

Self-test

Self-test #230

Workflow file for this run

name: Self-test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: '10 10 * * *'
jobs:
selftest:
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 ~= 2.0"
- name: conformance test sigstore-python
uses: ./
with:
entrypoint: ${{ github.workspace }}/sigstore-python-conformance
xfail: "test_verify_with_trust_root test_verify_dsse_bundle_with_trust_root"
- name: Staging conformance test sigstore-python
uses: ./
with:
entrypoint: ${{ github.workspace }}/sigstore-python-conformance
environment: staging
xfail: "test_verify_with_trust_root test_verify_dsse_bundle_with_trust_root"