mirror of
https://github.com/nineties/planckforth
synced 2024-12-25 21:58:22 +01:00
Split workflows for making status badge for each language
This commit is contained in:
parent
f322404f59
commit
4c3e6e757c
3 changed files with 35 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
name: runtests
|
||||
name: testing c
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
@ -6,14 +6,11 @@ on:
|
|||
- main
|
||||
paths-ignore: ['README.md', 'LICENSE', '.gitignore']
|
||||
jobs:
|
||||
runtests:
|
||||
strategy:
|
||||
matrix:
|
||||
impl: ['i386-linux-handwritten', 'c', 'python']
|
||||
runtests-c:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: run tests
|
||||
run: |
|
||||
make ${{ matrix.impl }}
|
||||
make c
|
||||
./planck < bootstrap.fs runtests.fs
|
16
.github/workflows/runtests-i386-linux-handwritten.yaml
vendored
Normal file
16
.github/workflows/runtests-i386-linux-handwritten.yaml
vendored
Normal 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
|
16
.github/workflows/runtests-python.yaml
vendored
Normal file
16
.github/workflows/runtests-python.yaml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: testing python
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths-ignore: ['README.md', 'LICENSE', '.gitignore']
|
||||
jobs:
|
||||
runtests-python:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: run tests
|
||||
run: |
|
||||
make python
|
||||
./planck < bootstrap.fs runtests.fs
|
Loading…
Reference in a new issue