Skip to content

Bump the github-actions group across 1 directory with 10 updates #12

Bump the github-actions group across 1 directory with 10 updates

Bump the github-actions group across 1 directory with 10 updates #12

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.21'
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test -v -race -coverprofile=coverage.out ./...
- name: Run vet
run: go vet ./...
- name: Upload coverage
uses: codecov/codecov-action@v6
with:
file: coverage.out
fail_ci_if_error: false