Skip to content

Fix Syntax Error in GitHub Actions Workflow #6

Fix Syntax Error in GitHub Actions Workflow

Fix Syntax Error in GitHub Actions Workflow #6

Workflow file for this run

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