Skip to content

Merge pull request #56 from NLnetLabs/check-if-branch #103

Merge pull request #56 from NLnetLabs/check-if-branch

Merge pull request #56 from NLnetLabs/check-if-branch #103

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
rust: [1.76.0, stable, beta, nightly]
# Test with no features, default features ("") and all features.
# Ordered fewest features to most features.
args: ["--no-default-features", "", "--all-features"]
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Install Rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
# - if: matrix.rust == 'stable'
# run: rustup component add clippy
# - if: matrix.rust == 'stable'
# run: cargo clippy -- -D warnings
- run: cargo build --verbose ${{ matrix.args }}
- run: cargo test --verbose ${{ matrix.args }}