ci: add formatting step

This commit is contained in:
Marc 2024-01-31 23:13:33 -05:00
parent 3ca2996e43
commit 27df322a50
Signed by: marc
GPG key ID: 048E042F22B5DC79

View file

@ -19,6 +19,15 @@ jobs:
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
- run: . script/test.sh - run: . script/test.sh
format:
name: "Formatting check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- run: . script/format.sh
integration-tests: integration-tests:
name: "Integration tests" name: "Integration tests"
runs-on: ubuntu-latest runs-on: ubuntu-latest