From aaf514a8c569f7c4d3746d9c95a9ff5653376ed5 Mon Sep 17 00:00:00 2001 From: Davide Oddone Date: Sat, 2 Dec 2023 11:40:57 +0000 Subject: [PATCH] Fixed wrong indentation --- .gitea/workflows/build.yml | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ec39d3a..447b085 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,20 +1,18 @@ name: Build - on: [push] - jobs: gobuild: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Go - uses: actions/setup-go@v3 - with: - go-version: '1.21.x' - - name: Install dependencies - run: go get . - - name: Build - run: go build -v ./20231201/trebuchet.go - - name: Display Go version - run: go version + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Go + uses: actions/setup-go@v3 + with: + go-version: '1.21.x' + - name: Install dependencies + run: go get . + - name: Build + run: go build -v ./20231201/trebuchet.go + - name: Display Go version + run: go version