Support Witness attestation collections #4
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: verify | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 | |
with: | |
go-version: '1.21.x' | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Verify test standard layout | |
run: | | |
go run main.go -l layouts/layout.yml -a test-data | |
- name: Verify test NPM layout | |
run: | | |
go run main.go -l layouts/layout-npm.yml -a test-data-npm --substitute-parameters parameters/npm-sigstore.json | |
- name: Verify witness collection layout | |
run: | | |
go run main.go -l layouts/layout-witness.yml -a test-data-witness |