Skip to content

compile the code

compile the code #125

Workflow file for this run

on: push
name: CI
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
#args: --release --all-features
- build
run: |

Check failure on line 20 in .github/workflows/basic.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/basic.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
make releasae
make debug
- name: tests
run: |
for i in tests/fasten_*.sh; do echo $i; echo ===; bash $i; echo; done;