micro/.gitea/workflows/pr.yml

23 lines
421 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: actions/setup-go
2020-02-24 17:11:17 +03:00
with:
go-version: 1.19
- name: checkout
uses: actions/checkout
- 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 ./...