jx/.gitea/workflows/test.yaml

60 lines
2.1 KiB
YAML
Raw 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:
2024-05-24 05:33:24 +00:00
image: registry.cv.mazarbul.net/declarative/build-golang:1.22.1-alpine-x86_64
2024-03-21 21:55:00 +00:00
env:
GOPATH: /
SSH_AUTH_SOCK: /tmp/ssh.sock
ENVIRONMENT: dev
2024-05-24 23:49:24 +00:00
BUILDER_VOLUME_HOME: "${{ vars.BUILDER_VOLUME_HOME }}"
2024-03-21 21:55:00 +00:00
volumes:
2024-05-24 22:12:10 +00:00
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
2024-05-25 02:48:40 +00:00
- "/etc/gitconfig:/etc/gitconfig:ro"
- "${{ env.SSH_AUTH_SOCK }}:/tmp/ssh.sock"
2024-05-25 02:16:20 +00:00
- "${{ vars.GITEA_WORKSPACE }}:/go/src"
2024-05-24 22:12:10 +00:00
- "${{ env.BUILDER_VOLUME_HOME }}/.ssh/known_hosts:/root/.ssh/known_hosts"
- "${{ env.BUILDER_VOLUME_HOME }}/.gitconfig:/root/.gitconfig:ro"
- "${{ env.BUILDER_VOLUME_HOME }}/.git-credentials:/root/.git-credentials:ro"
2024-05-24 21:45:37 +00:00
- "/etc/ssl/certs:/etc/ssl/certs:ro"
2024-03-21 21:55:00 +00:00
options: --cpus 1
steps:
2024-03-22 18:55:50 +00:00
- 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."
- name: Run tests
run: |
2024-03-23 20:03:42 +00:00
go test -coverprofile=artifacts/coverage.profile ./...
2024-04-03 22:53:10 +00:00
- name: Run build
run: |
make build
- name: cli tests
run: |
go test
- run: echo "This job's status is ${{ job.status }}."
2024-03-23 20:43:24 +00:00
- run: echo "This job's status is ${{ job.status }}."
2024-03-23 20:11:53 +00:00
- name: coverage report
run: |
2024-03-24 00:19:13 +00:00
go tool cover -html=artifacts/coverage.profile -o artifacts/code-coverage.html
- name: Archive code coverage results
2024-03-24 00:54:55 +00:00
uses: actions/upload-artifact@v3
2024-03-24 00:19:13 +00:00
with:
name: code-coverage-report
path: artifacts/code-coverage.html
2024-04-03 22:53:10 +00:00
- name: Archive binary
uses: actions/upload-artifact@v3
with:
name: decl
path: decl
2024-03-21 21:55:00 +00:00
- run: echo "This job's status is ${{ job.status }}."