chore(ci): add unit-test workflow
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
e880ea9041
commit
d330eb6f52
29
.gitea/workflows/unit-tests.yaml
Normal file
29
.gitea/workflows/unit-tests.yaml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
name: Run unit tests
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
types: [ "opened", "reopened", "synchronize" ]
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
workflow_dispatch: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
cluster:
|
||||||
|
container:
|
||||||
|
image: docker.io/library/golang:1.23.5
|
||||||
|
runs-on:
|
||||||
|
- docker
|
||||||
|
steps:
|
||||||
|
- name: Install tooling
|
||||||
|
run: |
|
||||||
|
apt update --yes
|
||||||
|
apt upgrade --ye s
|
||||||
|
apt install git npm
|
||||||
|
- env:
|
||||||
|
GOPROXY: ${{ vars.GOPROXY }}
|
||||||
|
GONOSUMDB: ${{ vars.GONOSUMDB }}
|
||||||
|
name: Execute containerized unit test
|
||||||
|
run: make test
|
Loading…
x
Reference in New Issue
Block a user