Skip to content

Commit

Permalink
Merge pull request #5 from pmoura/add_testing_workflow_for_pull_requests
Browse files Browse the repository at this point in the history
Add testing workflow for pull requests
  • Loading branch information
PaulBrownMagic authored Oct 28, 2019
2 parents 575e50a + c9e8367 commit 1399112
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Testing

on: [pull_request]

jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Install SWI-Prolog backend
uses: logtalk-actions/setup-swi-prolog@master
with:
swipl-branch: stable
swipl-version: latest
- name: Install Logtalk
uses: logtalk-actions/setup-logtalk@master
with:
logtalk-version: latest
logtalk-tool-dependencies: false
- name: Checkout Logtalk application to be tested
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Run the application tests
run: logtalk_tester

0 comments on commit 1399112

Please sign in to comment.