Skip to content

Bump docker/setup-buildx-action from 3.1.0 to 3.2.0 #92

Bump docker/setup-buildx-action from 3.1.0 to 3.2.0

Bump docker/setup-buildx-action from 3.1.0 to 3.2.0 #92

Workflow file for this run

name: "Code Coverage"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Run test coverage
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
- uses: codecov/codecov-action@v4
with:
files: coverage.out