Skip to content

Add ability to Ignore arguments #60

Add ability to Ignore arguments

Add ability to Ignore arguments #60

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
strategy:
matrix:
features: ["--features=full", "--no-default-features"]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: test
args: ${{ matrix.features }}