mirror of
https://github.com/nineties/planckforth
synced 2024-12-26 21:58:42 +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:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
@ -6,14 +6,11 @@ on:
|
||||||
- main
|
- main
|
||||||
paths-ignore: ['README.md', 'LICENSE', '.gitignore']
|
paths-ignore: ['README.md', 'LICENSE', '.gitignore']
|
||||||
jobs:
|
jobs:
|
||||||
runtests:
|
runtests-c:
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
impl: ['i386-linux-handwritten', 'c', 'python']
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: run tests
|
- name: run tests
|
||||||
run: |
|
run: |
|
||||||
make ${{ matrix.impl }}
|
make c
|
||||||
./planck < bootstrap.fs runtests.fs
|
./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