Updated to no longer be ksh dependant #40
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: Simple Syntax Check | |
on: [push] | |
jobs: | |
SyntaxCheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install ksh | |
run: sudo apt-get install -y ksh | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- run: echo "${{ github.repository }} has been cloned" | |
- name: Check for syntax errors | |
run: ./zrep | |
- run: echo "This job's status is ${{ job.status }}." | |