Fix date time links #794
Workflow file for this run
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 / main | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - 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 | |
| - name: Verify test files | |
| run: bin/verify-test-files |