jx/.gitea/workflows/test.yaml

57 lines
1.9 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:
2024-09-27 00:35:29 +00:00
image: rosskeenhouse/build-golang:1.22.6-alpine
2024-03-21 21:55:00 +00:00
env:
GOPATH: /
SSH_AUTH_SOCK: /tmp/ssh.sock
ENVIRONMENT: dev
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"
2024-05-25 23:41:43 +00:00
- "/opt/gitea/act_runner/.ssh/known_hosts:/root/.ssh/known_hosts"
- "/opt/gitea/act_runner/.gitconfig:/root/.gitconfig:ro"
- "/opt/gitea/act_runner/.git-credentials:/root/.git-credentials:ro"
2024-05-24 21:45:37 +00:00
- "/etc/ssl/certs:/etc/ssl/certs:ro"
2024-05-26 00:13:08 +00:00
options: --cpus 10
2024-03-21 21:55:00 +00:00
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:
2024-05-29 07:01:27 +00:00
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:
2024-05-29 07:01:27 +00:00
name: "jx-alpine"
path: "jx"
2024-03-21 21:55:00 +00:00
- run: echo "This job's status is ${{ job.status }}."