From 52d2b45a92de7707415e508ebc32d82c807cfaf9 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Sat, 17 Aug 2024 16:46:03 +0100 Subject: [PATCH] add Dockerfile --- .forgejo/actions/tests/Dockerfile | 1 + .forgejo/actions/tests/action.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .forgejo/actions/tests/Dockerfile diff --git a/.forgejo/actions/tests/Dockerfile b/.forgejo/actions/tests/Dockerfile new file mode 100644 index 0000000..a2a64c1 --- /dev/null +++ b/.forgejo/actions/tests/Dockerfile @@ -0,0 +1 @@ +FROM golang:1.23.0-alpine diff --git a/.forgejo/actions/tests/action.yaml b/.forgejo/actions/tests/action.yaml index 3f19642..dcb10d4 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: "docker://golang:1.23.0-alpine" + image: "Dockerfile" env: ENBAS_TEST_VERBOSE: "1" ENBAS_TEST_COVER: "1"