Skip to content

feat(artifacts): Object storage integration and artifacts key #17205

feat(artifacts): Object storage integration and artifacts key

feat(artifacts): Object storage integration and artifacts key #17205

Workflow file for this run

# name of the action
name: test
# trigger on pull_request or push events
on:
pull_request:
push:
permissions:
contents: read
# pipeline to execute
jobs:
test:
runs-on: ubuntu-latest
# for codecov report upload
permissions:
id-token: write
steps:
- name: clone
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: install go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
# use version from go.mod file
go-version-file: "go.mod"
cache: true
check-latest: true
- name: test
run: |
make test
- name: test jsonschema
run: |
go install github.com/santhosh-tekuri/jsonschema/cmd/[email protected]
make test-jsonschema
- name: coverage
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
with:
use_oidc: true
files: coverage.out