mirror of
https://github.com/nineties/planckforth
synced 2024-12-25 21:58:22 +01:00
fix indent
This commit is contained in:
parent
04b2474681
commit
5b77b4ebee
4 changed files with 44 additions and 41 deletions
31
.github/workflows/benchmark.yaml
vendored
31
.github/workflows/benchmark.yaml
vendored
|
@ -1,18 +1,21 @@
|
|||
name: benchmark
|
||||
|
||||
on:
|
||||
push:
|
||||
workflow_run:
|
||||
workflows: ["i386-linux-handwritten", "C", "python"]
|
||||
types:
|
||||
- completed
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: take benchmarks
|
||||
run: |
|
||||
./benchmark/gendoc.sh
|
||||
- name: upload to wiki
|
||||
uses: SwiftDocOrg/github-wiki-publish-action@v1
|
||||
with:
|
||||
path: "documentation"
|
||||
env:
|
||||
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: take benchmarks
|
||||
run: |
|
||||
./benchmark/gendoc.sh
|
||||
- name: upload to wiki
|
||||
uses: SwiftDocOrg/github-wiki-publish-action@v1
|
||||
with:
|
||||
path: "documentation"
|
||||
env:
|
||||
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|
||||
|
|
18
.github/workflows/c.yaml
vendored
18
.github/workflows/c.yaml
vendored
|
@ -1,13 +1,13 @@
|
|||
name: C
|
||||
|
||||
on:
|
||||
push:
|
||||
push:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: run tests
|
||||
run: |
|
||||
make c
|
||||
./planck < bootstrap.fs runtests.fs
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: run tests
|
||||
run: |
|
||||
make c
|
||||
./planck < bootstrap.fs runtests.fs
|
||||
|
|
18
.github/workflows/i386-linux-handwritten.yml
vendored
18
.github/workflows/i386-linux-handwritten.yml
vendored
|
@ -1,14 +1,14 @@
|
|||
name: i386-linux-handwritten
|
||||
|
||||
on:
|
||||
push:
|
||||
push:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: run tests
|
||||
run: |
|
||||
make
|
||||
./planck < bootstrap.fs runtests.fs
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: run tests
|
||||
run: |
|
||||
make
|
||||
./planck < bootstrap.fs runtests.fs
|
||||
|
||||
|
|
18
.github/workflows/python.yaml
vendored
18
.github/workflows/python.yaml
vendored
|
@ -1,13 +1,13 @@
|
|||
name: python
|
||||
|
||||
on:
|
||||
push:
|
||||
push:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: run tests
|
||||
run: |
|
||||
make python
|
||||
./planck < bootstrap.fs runtests.fs
|
||||
build:
|
||||
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