CSRBot 4a1297b9b8
Some checks failed
Run unit tests / test (pull_request) Successful in 7m35s
continuous-integration/drone/pr Build is passing
Run unit tests / test (push) Successful in 5m0s
continuous-integration/drone/push Build is failing
chore(deps): update docker.io/library/golang docker tag to v1.24.2
2025-04-01 17:29:30 +00:00

30 lines
615 B
YAML

name: Run unit tests
on:
pull_request:
branches:
- '*'
types: [ "opened", "reopened", "synchronize" ]
push:
branches:
- '*'
workflow_dispatch: {}
jobs:
test:
container:
image: docker.io/library/golang:1.24.2
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apt-get update --yes
apt-get upgrade --yes
apt-get install --yes git npm
- uses: actions/checkout@v4
- env:
GOPROXY: ${{ vars.GOPROXY }}
GONOSUMDB: ${{ vars.GONOSUMDB }}
name: Execute containerized unit test
run: make test