Intialize and cleanup repo

This commit is contained in:
2020-04-30 19:16:46 -04:00
commit 49e859eb1a
89 changed files with 2233 additions and 0 deletions

27
.github/workflows/test_server.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Run Server Tests
on:
push:
paths:
- 'server/**'
- '.github/workflows/test_server.yml'
pull_request:
paths:
- 'server/**'
- '.github/workflows/test_server.yml'
jobs:
Testing:
runs-on: ubuntu-latest
container:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build Container
working-directory: server
run: |
docker build -t local .
- name: Run Testing Script
working-directory: server
run: |
docker run local /bin/bash -c "cd /dt; /dt/run_tests.sh"