[CS2103-F08-3] PawFection #109
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: Shell Script Checks | |
on: [push, pull_request] | |
jobs: | |
run-shell-scripts: | |
strategy: | |
matrix: | |
platform: [ ubuntu-latest, macos-latest, windows-latest ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Set up repository | |
uses: actions/checkout@main | |
- name: Set up repository | |
uses: actions/checkout@main | |
with: | |
ref: master | |
- name: Checkout triggering commit | |
run: git checkout --progress --force ${{ github.sha }} | |
- name: Run repository-wide tests | |
working-directory: ${{ github.workspace }}/.github | |
run: ./run-checks.sh |