Skip to content

Merge branch 'feature/new-instructions' into develop #429

Merge branch 'feature/new-instructions' into develop

Merge branch 'feature/new-instructions' into develop #429

Workflow file for this run

name: Rust
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
cd rust_project
cargo build --verbose
- name: Run tests
run: |
cd rust_project
cargo test --verbose