From 0d158fecc1f7ad964194775f367f6f857c1d8652 Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Thu, 21 Mar 2024 14:55:00 -0700 Subject: [PATCH] add workflow --- .gitea/workflows/test.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..066496b --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,32 @@ +name: Declarative Tests +run-name: ${{ gitea.actor }} testing +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + container: + image: registry.cv.mazarbul.net/declarative/build-golang:1.21.1-alpine-x86_64 + env: + GOPATH: / + SSH_AUTH_SOCK: /tmp/ssh.sock + ENVIRONMENT: dev + volumes: + - ${{ env.HOME }}/.ssh/known_hosts:/root/.ssh/known_hosts + - ${{ env.SSH_AUTH_SOCK }}:/tmp/ssh.sock + - /etc/gitconfig:/etc/gitconfig + - /etc/ssl/certs:/etc/ssl/certs + - ${{ vars.GITEA_WORKSPACE }}:/go/src + options: --cpus 1 + steps: + - run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v3 + - run: echo "The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "The workflow is now ready to test your code on the runner." + - name: Run tests + run: | + go test + - run: echo "This job's status is ${{ job.status }}."