Skip to content

fix: crunchybridge integration #7

fix: crunchybridge integration

fix: crunchybridge integration #7

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: Download dependencies
run: go mod download
- name: Build
run: go build ./...
- name: Test
run: |
go test -coverprofile=coverage.out $(go list ./... | grep -v /tests/e2e)
go tool cover -func=coverage.out