Delete Video/Prolog Rules.mp4 #32
This file contains hidden or 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: Prolog Syntax Check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install SWI-Prolog | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y swi-prolog | |
- name: Check Prolog Syntax | |
run: swipl -g "consult('code/travel_planner.pl'), halt(0)" -t "halt(1)" |