Fix Syntax Error in GitHub Actions Workflow #6
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run script | |
run: | | |
echo "CI status received from 'PolusAI/workflow-inference-compiler'" | |
if [ "$?" -ne 0 ]; then | |
echo "Error in script execution" | |
exit 1 | |
fi |