From 3d0a478a52f658ba62aa2ab62332d87e387e704e Mon Sep 17 00:00:00 2001 From: "Seraphim R. Pardee" Date: Thu, 19 Sep 2024 23:54:41 -0400 Subject: [PATCH] Fix indentation. --- .gitea/workflows/test-n-build.yaml | 40 +++++++++++++++--------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.gitea/workflows/test-n-build.yaml b/.gitea/workflows/test-n-build.yaml index 4dc9051..d45d728 100644 --- a/.gitea/workflows/test-n-build.yaml +++ b/.gitea/workflows/test-n-build.yaml @@ -4,32 +4,32 @@ on: [push] jobs: test: - runs-on: ubuntu-latest - steps: - - name: checkout code - uses: actions/checkout@v4 - - name: setup go 1.23.1 and fetch deps - uses: actions/setup-go@v5 - with: - go-version: '1.23.1' - cache-dependency-path: go.sum - - name: do the actual test thing - run: go test -json > testresults-1.23.1.json - - name: upload test results - uses: actions/upload-artifact@v4 - with: - name: go-results-1.23.1 - path: testresults-1.23.1.json + runs-on: ubuntu-latest + steps: + - name: checkout code + uses: actions/checkout@v4 + - name: setup go 1.23.1 and fetch deps + uses: actions/setup-go@v5 + with: + go-version: '1.23.1' + cache-dependency-path: go.sum + - name: do the actual test thing + run: go test -json > testresults-1.23.1.json + - name: upload test results + uses: actions/upload-artifact@v4 + with: + name: go-results-1.23.1 + path: testresults-1.23.1.json build: runs-on: ubuntu-latest steps: - name: checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v4 - name: setup go 1.23.1 and fetch deps uses: actions/setup-go@v5 with: go-version: '1.23.1' - cache-dependency-path: go.sum - - name: do the actual build thing - run: go build -v ./... + cache-dependency-path: go.sum + - name: do the actual build thing + run: go build -v ./...