diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a891788..2b00962 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -7,6 +7,8 @@ on: jobs: release: runs-on: ubuntu-latest + container: + image: golang:1.21-alpine steps: - name: Checkout repository run: | @@ -14,6 +16,10 @@ jobs: cd hello_gitea git checkout ${{ github.ref }} + - name: Setup Go + run: | + go version + - name: Build run: | cd hello_gitea