micro/.gitea/workflows/pr.yml

27 lines
573 B
YAML
Raw Normal View History

name: pr
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: checkout
uses: https://gitea.com/actions/checkout@v3
- name: setup-node
uses: https://gitea.com/actions/setup-node@v3
with:
node-version: 18
- name: setup-go
uses: https://gitea.com/actions/setup-go@v3
with:
go-version: 1.18
- 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 ./...