2021-12-06 13:02:31 +01:00
|
|
|
name: runtests
|
2021-01-11 06:26:10 +01:00
|
|
|
|
2021-12-06 13:02:31 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
2021-12-06 13:10:30 +01:00
|
|
|
branches:
|
|
|
|
- main
|
2021-12-06 13:04:03 +01:00
|
|
|
paths-ignore: ['README.md', 'LICENSE', '.gitignore']
|
2021-01-11 06:26:10 +01:00
|
|
|
jobs:
|
2021-01-13 12:18:07 +01:00
|
|
|
runtests:
|
2021-12-06 13:02:31 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-12-06 13:08:51 +01:00
|
|
|
impl: ['i386-linux-handwritten', 'c', 'python']
|
2021-01-11 08:39:26 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: run tests
|
|
|
|
run: |
|
2021-12-06 13:02:31 +01:00
|
|
|
make ${{ matrix.impl }}
|
2021-01-11 08:39:26 +01:00
|
|
|
./planck < bootstrap.fs runtests.fs
|