Skip to content

Merge pull request #9 from bborbe/fix/spec-004-replay-verification #32

Merge pull request #9 from bborbe/fix/spec-004-replay-verification

Merge pull request #9 from bborbe/fix/spec-004-replay-verification #32

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize]
push:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- name: Install Trivy
run: |
sudo apt-get update
sudo apt-get install -y wget apt-transport-https gnupg lsb-release
wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | sudo apt-key add -
echo "deb https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -sc) main" | sudo tee -a /etc/apt/sources.list.d/trivy.list
sudo apt-get update
sudo apt-get install -y trivy
- name: Run precommit checks
run: make precommit