mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-14 21:57:49 +08:00
24 lines
434 B
YAML
24 lines
434 B
YAML
|
name: Integration Test
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
|
||
|
jobs:
|
||
|
tests:
|
||
|
runs-on: ubuntu-latest
|
||
|
services:
|
||
|
mongodb:
|
||
|
image: mongo:4.2
|
||
|
ports:
|
||
|
- 27017:27017
|
||
|
env:
|
||
|
MONGO_INITDB_ROOT_USERNAME: mongoadmin
|
||
|
MONGO_INITDB_ROOT_PASSWORD: mongopass
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: run tests
|
||
|
run: |
|
||
|
cd test
|
||
|
go test . -v
|