Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from v1 to v2.2.0. - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v1...6317259e28065ecd33bf7e7e6c67c77db091d8a4) Signed-off-by: dependabot[bot] <support@github.com>
24 lines
483 B
YAML
24 lines
483 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Lint
|
|
uses: golangci/golangci-lint-action@v2.2.0
|
|
with:
|
|
version: v1.27
|
|
|
|
- name: Build
|
|
run: |
|
|
make test race build
|
|
|
|
- name: Spec test
|
|
run: |
|
|
docker run --mount type=bind,source=$(pwd)/build/kapow,target=/usr/local/bin/kapow bbvalabsci/kapow-spec-test-suite:latest behave --tags=~@skip
|