From d59deb34a69ac7701e9ed482cd6f97e1051a6d37 Mon Sep 17 00:00:00 2001 From: blackbeard420 Date: Thu, 6 Mar 2025 22:19:40 -0500 Subject: [PATCH] test --- .gitea/workflows/test.yaml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) 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