micro/.gitea/workflows/pr.yml
Vasiliy Tolstov b4f0c3e29a
Some checks failed
lint
test
retest
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2023-03-19 13:29:21 +03:00

23 lines
421 B
YAML

name: prbuild
on:
pull_request:
branches:
- master
- v3
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: setup
uses: actions/setup-go
with:
go-version: 1.19
- name: checkout
uses: actions/checkout
- name: deps
run: go get -v -t -d ./...
- name: test
env:
INTEGRATION_TESTS: yes
run: go test -mod readonly -v ./...