Skip to content

Commit

Permalink
Merge remote-tracking branch 'github/main' into fix/subtract-previous…
Browse files Browse the repository at this point in the history
…-usage
  • Loading branch information
SOF3 committed Apr 17, 2023
2 parents a2fda79 + ee80bec commit 5aad843
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: CI

on:
push:
branches:
- main
tags:
- v*
pull_request:

# TODO: coverage

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version:
- "1.19"
- "1.20"
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- run: make test

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v4
with:
go-version: "1.19"
# https://github.com/golangci/golangci-lint-action/issues/244
# without `cache: false`, the action might intermittently fail
cache: false

- uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
only-new-issues: true
args: >
--timeout=5m
--max-issues-per-linter=0
--max-same-issues=0
--uniq-by-line=false
verify-codegen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-go@v4
with:
go-version: "1.19"

- run: |
make generate -B
git diff --exit-code && exit 0
echo "Codegen is not up to date. Please run 'make generate' and commit the changes." >&2
exit 1

0 comments on commit 5aad843

Please sign in to comment.