Additional comments within gorm search query to try to aid benchmarks #5
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: CI Checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
linting: | |
name: Run Code Linters and Tests | |
runs-on: ubuntu-latest | |
container: | |
image: golang:alpine | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go environment | |
run: | | |
go mod download | |
go install ./... | |
- name: Go vet | |
run: go vet ./... | |
- name: Run tests and enforce coverage threshold | |
run: | | |
go test -v -coverprofile=coverage.out ./... | |
COVERAGE=$(go tool cover -func=coverage.out | grep total | awk '{print $3}') | |
echo "Coverage - $COVERAGE" | |
if [ $(echo "$COVERAGE < 95.0" | bc) -eq 1 ]; then | |
echo "ERROR - Test coverage is below 95%: $COVERAGE" | |
exit 1 | |
fi | |
- name: Upload coverage file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: coverage.out | |