Skip to content

chore(deps): bump actions/add-to-project from 0.6.1 to 1.0.0 #104

chore(deps): bump actions/add-to-project from 0.6.1 to 1.0.0

chore(deps): bump actions/add-to-project from 0.6.1 to 1.0.0 #104

Workflow file for this run

name: PR
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Cache Go modules
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Tests
run: |
go mod download
go test -race -v -coverprofile=profile.cov ./...
- name: Publish go coverage
uses: codecov/codecov-action@v4.1.0
with:
file: ./profile.cov
name: go-codecov