able to recreate test config in UI, parse it, and use in python_test_1 #218
Workflow file for this run
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: build Docker image | |
run: docker build -t music-box-test . --build-arg TAG_ID=chapman | |
- name: run tests in container | |
run: docker run --name test-container -t music-box-test bash -c 'cd /music-box/build; make test' |