From 78f28c69ea3cd775095317bfcaa06dff095e4e35 Mon Sep 17 00:00:00 2001 From: okuoku Date: Thu, 28 May 2020 02:52:23 +0900 Subject: [PATCH] CI: Add Github Actions This workflow tests against the standard Makefile build on Mac and Linux. --- .github/workflows/CI.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/CI.yaml diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml new file mode 100644 index 00000000..1a53e31c --- /dev/null +++ b/.github/workflows/CI.yaml @@ -0,0 +1,23 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + name: ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + + steps: + - uses: actions/checkout@v2 + - name: Build + run: make # assumes GNUMake + - name: Test + run: make test-all + - name: Setup + run: sudo make install + - name: Run in PATH + run: chibi-scheme r7rs-tests.scm + working-directory: tests