From: Doug Coleman Date: Wed, 1 Dec 2021 03:18:17 +0000 (-0600) Subject: Build and test core X-Git-Tag: 0.99~2241 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=e28141d8cd88b485dd3b3c1ded37041cd61bd87b Build and test core Let's see if this works as a CI. --- diff --git a/.github/workflows/build-test-core.yml b/.github/workflows/build-test-core.yml new file mode 100644 index 0000000000..82c9d46a9f --- /dev/null +++ b/.github/workflows/build-test-core.yml @@ -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" +