diff --git a/.forgejo/actions/tests/Dockerfile b/.forgejo/actions/tests/Dockerfile deleted file mode 100644 index a2a64c1..0000000 --- a/.forgejo/actions/tests/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -FROM golang:1.23.0-alpine diff --git a/.forgejo/actions/tests/action.yaml b/.forgejo/actions/tests/action.yaml index dcb10d4..3f19642 100644 --- a/.forgejo/actions/tests/action.yaml +++ b/.forgejo/actions/tests/action.yaml @@ -3,7 +3,7 @@ name: "Testing" description: "Performs unit and lint tests for Enbas with mage" runs: using: "docker" - image: "Dockerfile" + image: "docker://golang:1.23.0-alpine" env: ENBAS_TEST_VERBOSE: "1" ENBAS_TEST_COVER: "1" diff --git a/.forgejo/workflows/Tests.yaml b/.forgejo/workflows/Tests.yaml index e23844c..bb772d5 100644 --- a/.forgejo/workflows/Tests.yaml +++ b/.forgejo/workflows/Tests.yaml @@ -14,4 +14,4 @@ jobs: - name: Checkout Repository uses: https://code.forgejo.org/actions/checkout@v4 - name: Test - uses: ./forgejo/actions/tests + uses: ./.forgejo/actions/tests