diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 3cbfff7..7c2c536 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -3,12 +3,16 @@ run-name: ${{ gitea.actor }} build test on: [push] jobs: + Checkout: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + Build: runs-on: ubuntu-latest container: image: golang steps: - - name: Check out repository code - uses: actions/checkout@v4 - name: Run go build run: go build \ No newline at end of file