From 8fdf3d75ee2d7436939bbd7b623532b1ced612ed Mon Sep 17 00:00:00 2001 From: drunkendog Date: Sat, 26 Aug 2023 19:46:29 +0100 Subject: [PATCH] Add environment test to gitea-actions --- .gitea/workflows/test-environment.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/test-environment.yaml diff --git a/.gitea/workflows/test-environment.yaml b/.gitea/workflows/test-environment.yaml new file mode 100644 index 0000000..9f106f4 --- /dev/null +++ b/.gitea/workflows/test-environment.yaml @@ -0,0 +1,15 @@ +name: Environment Setup Test +run-name: ${{ github.actor }} is testing out Gitea Actions 🚀 +on: [push, pull_request] +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-22.04 + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - run: cd ${{ github.workspace }} + - name: Run repository setup scripts + run: sh setup.sh + run: sh scripts/get-docker.sh + - name: Check if Docker was installed + run: docker run hello-world \ No newline at end of file