diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 4cbf1d3..969d1cb 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -3,14 +3,22 @@ run-name: ${{ gitea.actor }} build test on: [push] jobs: + Checkout: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - run: | + ls -la + pwd + ls -la / + Build: runs-on: ubuntu-latest container: image: golang options: --user root steps: - - name: Check out repository code - uses: actions/checkout@v4 - - run: ls -la + - run: ls -la / - name: Run go build run: go build \ No newline at end of file