satellite: add instructions (#443) #703
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: prolog / main | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Setup swi-prolog | |
uses: logtalk-actions/setup-swi-prolog@bf7d8c39fb30a188646579176d805496421c4ee5 | |
with: | |
swi-prolog-branch: stable | |
swi-prolog-version: latest | |
- name: Install packages | |
run: swipl pack install date_time -y | |
- name: Verify all exercises | |
run: bin/verify-exercises.sh | |
- name: Verify test files | |
run: bin/verify-test-files.sh |