mirror of
https://github.com/nineties/planckforth
synced 2024-12-25 21:58:22 +01:00
commit
f18a36cd2b
4 changed files with 30 additions and 19 deletions
13
.github/workflows/i386-linux-handwritten.yml
vendored
13
.github/workflows/i386-linux-handwritten.yml
vendored
|
@ -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
|
||||
|
|
@ -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
|
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
|
|
@ -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
|
Loading…
Reference in a new issue