This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
Update doc link #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit & Integration Tests | |
on: [push] | |
jobs: | |
app-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Start Eliona mock | |
run: | | |
git clone https://github.com/eliona-smart-building-assistant/eliona-mock.git | |
cd eliona-mock | |
docker-compose up -d | |
- name: Wait for Eliona mock to be up | |
run: | | |
until nc -z localhost 3000; do sleep 1; done | |
- name: Run application tests | |
id: run_app_test | |
run: go test -v ./... -cover | |
env: | |
CONNECTION_STRING: postgres://postgres:secret@172.17.0.1:5432?sslmode=disable | |
API_ENDPOINT: http://172.17.0.1:3000/v2 | |
API_TOKEN: secret | |
APP_NAME: saml-sso | |
LOG_LEVEL: debug | |
START_MODE: docker |