mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
CI: Add Github Actions
This workflow tests against the standard Makefile build on Mac and Linux.
This commit is contained in:
parent
daa7263690
commit
78f28c69ea
1 changed files with 23 additions and 0 deletions
23
.github/workflows/CI.yaml
vendored
Normal file
23
.github/workflows/CI.yaml
vendored
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue