Skip to content

chore(deps)(deps): bump google.golang.org/grpc (#26) #71

chore(deps)(deps): bump google.golang.org/grpc (#26)

chore(deps)(deps): bump google.golang.org/grpc (#26) #71

Workflow file for this run

name: Pull Request CI
permissions:
contents: read
on:
push:
branches: [ "main" ]
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Download modules
run: go mod download
- name: Run unit tests
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Run integration tests
run: go test -v -tags=integration -race -timeout 15m ./cmd/crankfire/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}