forked from sigstore/sigstore-python
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (28 loc) · 930 Bytes
/
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
name: Conformance Tests
on:
push:
branches:
- main
workflow_dispatch:
pull_request_target:
types: [labeled]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
conformance:
permissions:
# Needed to access the workflow's OIDC identity.
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
with:
python-version: "3.x"
cache: "pip"
cache-dependency-path: pyproject.toml
- name: install sigstore-python
run: python -m pip install .
- uses: sigstore/sigstore-conformance@0748d63c53810e36cc3f4bbe4114301080f0d844 # v0.0.3
with:
entrypoint: ${{ github.workspace }}/test/integration/sigstore-python-conformance