Skip to content

make pretty

make pretty #382

Workflow file for this run

name: "CI"
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- run: go version
- name: Go mod tidy
run: |
go mod tidy
git diff --exit-code || (echo "go.mod or go.sum is not clean! Run 'go mod tidy' and commit the changes." && exit 1)
- name: Go Vet
run: go vet ./go/...
- name: Build
run: make build
- name: Check formatting
run: |
make pretty
git diff --exit-code || (echo "Code is not formatted correctly! Run 'make pretty' and commit the changes." && exit 1)
- name: Install go-junit-report
run: go install github.com/jstemmer/go-junit-report@latest
- name: Run Tests and Convert to JUnit
run: go test -v ./go/... | go-junit-report > report.xml
- name: Test Summary
if: true
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86 # v2.4
with:
paths: "report.xml"
show: "fail"