netmaker/.github/workflows/test.yml

20 lines
320 B
YAML
Raw Normal View History

name: Integration Test
on:
push:
jobs:
tests:
env:
2021-10-20 03:53:01 +08:00
DATABASE: sqlite
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: run tests
run: |
go test -p 1 ./... -v
env:
2021-10-20 03:53:01 +08:00
DATABASE: sqlite
CLIENT_MODE: "off"