Skip to content
name: Build and Test TinyTodo
on:
workflow_call:

Check failure on line 4 in .github/workflows/build_tiny_todo_reusable.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_tiny_todo_reusable.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
- name: rustup
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: cargo fmt
working-directory: ./tinytodo
run: cargo fmt --all --check
- name: cargo rustc
working-directory: ./tinytodo
run: |
RUSTFLAGS="-D warnings -F unsafe-code" cargo build --verbose
- name: cargo test
working-directory: ./tinytodo
run: cargo test --verbose
- name: python test
working-directory: ./tinytodo
run: |
cargo build --release
python3 -m unittest