Skip to content

Merge branch 'feature/experiments1' into develop #420

Merge branch 'feature/experiments1' into develop

Merge branch 'feature/experiments1' into develop #420

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