Skip to content

fixing bash code block inconsistencies #5

fixing bash code block inconsistencies

fixing bash code block inconsistencies #5

Workflow file for this run

name: test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Checkout code
uses: actions/checkout@v4
- name: Test with race check
run: make testIncCovRep
- name: Test without race check
run: make testIncCovRepNoRace