Skip to content

fix: verify ORAS download checksum #8

fix: verify ORAS download checksum

fix: verify ORAS download checksum #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Go unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@900f2210b1d28bbbd0bd22d17926b9e224e8f231 # v6.0.2
- name: Set up Go
uses: actions/setup-go@78961f6f84d799cd858575bb931c3e51d3b13290 # v6.4.0
with:
go-version-file: tracker/go.mod
cache-dependency-path: tracker/go.sum
- name: Run unit tests
working-directory: tracker
run: go test ./internal/...
- name: Run go vet
working-directory: tracker
run: go vet ./internal/...