22 lines
426 B
YAML
22 lines
426 B
YAML
name: r2r_iron
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- rclrs
|
|
pull_request:
|
|
branches-ignore:
|
|
- rclrs
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
tests_humble:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: docker build . --file ./tests/Dockerfile_r2r_iron --tag r2r_iron
|
|
- run: docker run r2r_iron cargo test --features r2r_msg,derive,nalgebra,rayon
|