]> gitweb.factorcode.org Git - factor.git/commitdiff
Build and test core
authorDoug Coleman <doug.coleman@gmail.com>
Wed, 1 Dec 2021 03:18:17 +0000 (21:18 -0600)
committerGitHub <noreply@github.com>
Wed, 1 Dec 2021 03:18:17 +0000 (21:18 -0600)
Let's see if this works as a CI.

.github/workflows/build-test-core.yml [new file with mode: 0644]

diff --git a/.github/workflows/build-test-core.yml b/.github/workflows/build-test-core.yml
new file mode 100644 (file)
index 0000000..82c9d46
--- /dev/null
@@ -0,0 +1,20 @@
+name: C/C++ CI
+
+on:
+  push:
+    branches: [ master ]
+  pull_request:
+    branches: [ master ]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v2
+    - name: build
+      run: ./build.sh update
+    - name: test-core
+      run: ./factor -e="USE: zealot.factor USE: tools.test USE: tools.test.private [ zealot-core-vocabs test-vocabs ] with-child-options"
+