micro/.gitea/workflows/job_test.yml

33 lines
537 B
YAML
Raw Normal View History

2024-12-07 00:50:59 +07:00
name: test
on:
2024-12-07 01:05:29 +07:00
push:
2024-12-07 01:15:10 +07:00
branches:
- master
- v3
- v4
2024-12-07 00:50:59 +07:00
pull_request:
2024-12-07 01:13:39 +07:00
types: [opened, reopened, closed]
2024-12-07 00:50:59 +07:00
branches:
- master
- v3
- v4
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: setup-go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: checkout
uses: actions/checkout@v3
- name: deps
run: go get -v -d ./...
- name: test
env:
INTEGRATION_TESTS: yes
run: go test -mod readonly -v ./...