feat: add locking for files on per-prefix-basis to allow for concurre… #23
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: main | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.21' ] | |
name: go ${{ matrix.go }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Checking Code for Proper Formatting... | |
run: | | |
diff=$(go fmt ./...) | |
if [ -n "$diff" ]; then | |
echo "Some files are not properly formatted:" | |
echo "$diff" | |
exit 1 | |
fi | |
- name: Vetting Go Code... | |
run: go vet ./... | |
- name: Testing Go Code... | |
run: go test -race -v ./... |