Skip to content

Race condition fix. Part 2 (Runtime) #473

Race condition fix. Part 2 (Runtime)

Race condition fix. Part 2 (Runtime) #473

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: build
run: go build -v ./...
- name: install
run: |
go install ./cmd/neva
echo "$GOPATH/bin" >> $GITHUB_PATH
- name: test
run: go test -v ./...