micro/.gitea/workflows/pr.yml

23 lines
463 B
YAML
Raw Normal View History

name: prbuild
on:
pull_request:
branches:
- master
- v3
2020-02-24 17:11:17 +03:00
jobs:
test:
name: test
2020-02-24 17:11:17 +03:00
runs-on: ubuntu-latest
steps:
- name: setup
uses: https://gitea.com/actions/setup-go@v3
with:
go-version: 1.18
- name: checkout
uses: https://gitea.com/actions/checkout@v3
- name: deps
run: go get -v -t -d ./...
- name: test
2020-02-24 17:11:17 +03:00
env:
INTEGRATION_TESTS: yes
run: go test -mod readonly -v ./...