Skip to content

README.md: update copyright years #182

README.md: update copyright years

README.md: update copyright years #182

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Required for go-header check.
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache-dependency-path: |
go.sum
examples/devdata_cli/go.sum
id: go
- name: Verify go modules up to date
run: |
set -ex
go mod tidy
[ -z "$(git diff -- go.{mod,sum})" ] # Check there are no changes!
- name: Test (main module)
run: go test -race ./...
- name: Lint (main module)
uses: golangci/golangci-lint-action@v3
with:
version: v1.52
github-token: ${{ secrets.GITHUB_TOKEN }}
only-new-issues: false
skip-cache: true
args: --timeout=10m
- name: Test example/devdata_cli (sub module)
run: cd ./examples/devdata_cli && go test -race ./...