Fix/planning interfaces with entity implementations #121
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: v2-ci | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'v2/**' | |
- '.github/workflows/v2.yml' | |
push: | |
branches: | |
- master | |
paths: | |
- 'v2/**' | |
- '.github/workflows/v2.yml' | |
jobs: | |
test: | |
name: Build and test (go ${{ matrix.go }} / ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
go: [ '1.19', '1.20' ] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ^${{ matrix.go }} | |
id: go | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: CI | |
working-directory: v2 | |
run: make -f ../Makefile ci | |
- name: Run tests under race detector | |
working-directory: v2 | |
if: runner.os != 'Windows' # These are very slow on Windows, skip them | |
run: make -f ../Makefile test-race | |
lint: | |
name: Linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.20 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ^1.20 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Run linters | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
working-directory: v2 | |
version: v1.51.1 | |
args: --timeout=3m | |
ci: | |
name: CI Success | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
needs: [test, lint] | |
steps: | |
- run: exit 1 | |
if: >- | |
${{ | |
contains(needs.*.result, 'failure') | |
|| contains(needs.*.result, 'cancelled') | |
}} |