From 27df322a5042139f080dd2dc5bf800f420480f62 Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Wed, 31 Jan 2024 23:13:33 -0500 Subject: [PATCH] ci: add formatting step --- .github/workflows/ci.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1661ace..c7096ef 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,6 +19,15 @@ jobs: with: go-version: ${{ env.GO_VERSION }} - 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: name: "Integration tests" runs-on: ubuntu-latest