Skip to content

Allow multiple versions of the Cyclors library to be loaded simultane… #102

Allow multiple versions of the Cyclors library to be loaded simultane…

Allow multiple versions of the Cyclors library to be loaded simultane… #102

Workflow file for this run

name: Rust
on:
push:
branches: [master, dev/0.2.1]
pull_request:
branches: [master, dev/0.2.1]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Install ACL
if: startsWith(matrix.os,'ubuntu')
run: sudo apt-get -y install acl-dev
- name: Code format check
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Clippy check
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- name: Build (without Iceoryx)
run: cargo build --verbose
- name: Build (with Iceoryx)
run: cargo build --features iceoryx --verbose
- name: Run tests (without Iceoryx)
run: cargo test --verbose
- name: Run tests (with Iceoryx)
run: cargo test --features iceoryx --verbose