We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0ab18d2 + bbff816 commit 68d4910Copy full SHA for 68d4910
2 files changed
.github/workflows/test.yaml
@@ -0,0 +1,26 @@
1
+name: Run Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: read
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
20
+ - name: Install SWI-Prolog
21
+ run: |
22
+ sudo apt-get update
23
+ sudo apt-get install -y swi-prolog
24
25
+ - name: Run tests
26
+ run: make test
README.md
@@ -1,5 +1,7 @@
# plunit_assert
+[](https://github.com/simonharris/plunit_assert/actions/workflows/test.yaml)
PlUnit is a unit testing library for Prolog. Its goals are:
0 commit comments