Bump golang.org/x/sys from 0.0.0-20210423185535-09eb48e85fd7 to 0.1.0 in /core #209
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: Build and test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Lint core module | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
working-directory: core | |
args: --verbose | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
- name: Build core module | |
working-directory: core | |
run: go build -v ./... | |
- name: Test | |
run: cd core && go test -v ./... | |