Merge pull request #16 from nineties/improve-runtests

Improve runtests
This commit is contained in:
Koichi NAKAMURA 2021-12-06 21:32:44 +09:00 committed by GitHub
commit f18a36cd2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 30 additions and 19 deletions

View file

@ -1,13 +0,0 @@
name: i386-linux-handwritten
on: [push, pull_request]
jobs:
runtests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: run tests
run: |
make
./planck < bootstrap.fs runtests.fs

View file

@ -1,8 +1,12 @@
name: C
name: testing c
on: [push, pull_request]
on:
pull_request:
branches:
- main
paths-ignore: ['README.md', 'LICENSE', '.gitignore']
jobs:
runtests:
runtests-c:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

View file

@ -0,0 +1,16 @@
name: testing i386-linux-handwritten
on:
pull_request:
branches:
- main
paths-ignore: ['README.md', 'LICENSE', '.gitignore']
jobs:
runtests-i386-linux-handwritten:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: run tests
run: |
make i386-linux-handwritten
./planck < bootstrap.fs runtests.fs

View file

@ -1,8 +1,12 @@
name: python
name: testing python
on: [push, pull_request]
on:
pull_request:
branches:
- main
paths-ignore: ['README.md', 'LICENSE', '.gitignore']
jobs:
runtests:
runtests-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1