mirror of
https://github.com/nineties/planckforth
synced 2024-12-25 21:58:22 +01:00
16 lines
305 B
YAML
16 lines
305 B
YAML
name: testing c
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore: ['README.md', 'LICENSE', '.gitignore']
|
|
jobs:
|
|
runtests-c:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: run tests
|
|
run: |
|
|
make c
|
|
./planck < bootstrap.fs runtests.fs
|