netmaker/.github/workflows/test.yml
2021-10-19 15:53:01 -04:00

20 lines
320 B
YAML

name: Integration Test
on:
push:
jobs:
tests:
env:
DATABASE: sqlite
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: run tests
run: |
go test -p 1 ./... -v
env:
DATABASE: sqlite
CLIENT_MODE: "off"