Tearing it down to build it back up #81
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: 2d Unit Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: check 2d unit tests pass file | |
run: | | |
echo "Testing Pass condition" | |
if [[ $(cat $(git rev-parse --show-toplevel)/src/tests/2d-unit-tests-results.txt) != "pass" ]]; then exit 1 ; fi |