Delete .VSCodeCounter/2022-11-18_21-34-03 directory #47
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, Test and License | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Build | |
run: go build -v ./... | |
- name: Test RaceConditions Extended | |
run: go test -bench=. -benchtime=100s -test.parallel 1 -race -v | |
- name: Setup License Server | |
run: go install github.com/google/go-licenses@latest | |
- name: Check Licenses | |
run: go-licenses check "github.com/asap2Go/calibrationReader" |