Bump @octokit/request-error and @actions/github #21
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: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest] | |
steps: | |
- name: Install SWI-Prolog | |
uses: logtalk-actions/setup-swi-prolog@master | |
with: | |
swi-prolog-branch: stable | |
swi-prolog-version: latest | |
- name: Run trivial sanity test | |
run: swipl -g true -t halt | |
- name: Install Logtalk | |
uses: logtalk-actions/setup-logtalk@master | |
with: | |
logtalk-version: latest | |
logtalk-tool-dependencies: false | |
- name: Run Logtalk aliases example tests | |
run: cd "$LOGTALKUSER/examples/aliases" && logtalk_tester -p swi |