From 48eefe8e05df9f00c045cec269c1a29a9845c7dc Mon Sep 17 00:00:00 2001 From: Christopher Hunter <8398225+crhntr@users.noreply.github.com> Date: Wed, 6 Mar 2024 15:42:28 -0800 Subject: [PATCH] decrease workflow spec indentation to 2 spaces --- .github/workflows/go.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index fd1705d..8538853 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -3,20 +3,20 @@ name: Go on: - push: - branches: ["main"] - pull_request: - branches: ["main"] + push: + branches: ["main"] + pull_request: + branches: ["main"] jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version-file: ./go.mod - - name: Build - run: go build -v ./... - - name: Test - run: go test -v ./... + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version-file: ./go.mod + - name: Build + run: go build -v ./... + - name: Test + run: go test -v ./...