Skip to content

chore(deps): bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#174) #350

chore(deps): bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#174)

chore(deps): bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#174) #350

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run tests
run: go test ./... -coverprofile coverage.out
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
skip-pkg-cache: true
skip-build-cache: true