jx/.gitea/workflows/test.yaml

39 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2024-03-21 21:55:00 +00:00
name: Declarative Tests
run-name: ${{ gitea.actor }} testing
2024-03-22 17:57:10 +00:00
on:
- push
- workflow_dispatch
- issue_comment
2024-03-21 21:55:00 +00:00
jobs:
2024-03-22 17:57:10 +00:00
test:
2024-03-21 21:55:00 +00:00
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:
2024-03-22 18:55:50 +00:00
- 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 }}."
- run: apk add --no-cache nodejs
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "The ${{ gitea.repository }} repository has been cloned to the runner."
2024-03-21 21:55:00 +00:00
- run: echo "The workflow is now ready to test your code on the runner."
2024-03-22 18:50:01 +00:00
- run: pwd
2024-03-22 18:50:57 +00:00
- run: find .
2024-03-21 21:55:00 +00:00
- name: Run tests
run: |
2024-03-22 18:57:29 +00:00
go test ./...
2024-03-21 21:55:00 +00:00
- run: echo "This job's status is ${{ job.status }}."