Fix for constantly adding new laps #18
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
# Use for testing of the Windows installation | |
# name: Testing Windows run file | |
# on: [ push, pull_request ] | |
# jobs: | |
# build: | |
# runs-on: windows-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v2 | |
# - name: Run Batch File | |
# run: | # Alert this will run forever! | |
# .\run.ps1 > output.txt | |
# echo "::set-output name=output_file::output.txt" | |
# - name: Check Output | |
# run: | | |
# $successMessageFound = Select-String -Pattern "Bokeh app running at" -Path $env:output_file | |
# if ($successMessageFound) { | |
# echo "Bokeh startup found in the output." | |
# exit 0 | |
# } else { | |
# echo "No bokeh startup found in the output." | |
# exit 1 | |
# } |