Skip to content

Add IgnoredPaths option #521

Add IgnoredPaths option

Add IgnoredPaths option #521

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
check:
name: Check
runs-on: ubuntu-latest
# Execute the checks inside the container instead the VM.
container: golangci/golangci-lint:v1.31.0-alpine
steps:
- uses: actions/checkout@v2.4.0
- run: golangci-lint run -E goimports
unit-test:
name: Unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/setup-go@v2.1.4
with:
go-version: 1.17
- run: make test
integration-test:
name: Integration test
runs-on: ubuntu-latest
needs: [check, unit-test]
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/setup-go@v2.1.4
with:
go-version: 1.17
- run: make integration-test