Bump unsafe-libyaml from 0.2.5 to 0.2.10 #611
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
features: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
feature: | |
- elgamal | |
- zip | |
- serde | |
- cli | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Feature ${{ matrix.feature }} | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --no-default-features --features=${{ matrix.feature }} | |
- name: Defaults + ${{ matrix.feature }} | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --features=${{ matrix.feature }} | |
platforms: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-18.04, ubuntu-20.04, macos-10.15, macos-11.0, windows-2019 ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install macos dependencies | |
if: startsWith(matrix.os, 'macos') | |
run: brew install pkg-config | |
- name: Install rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Build with no features | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --no-default-features | |
- name: Build with defaults | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --all-features | |
toolchains: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: [ nightly, beta, stable, 1.59.0 ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install rust ${{ matrix.toolchain }} | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
override: true | |
- name: All features | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --workspace --all-targets --all-features | |
dependency: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install latest stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Create dependency | |
run: | | |
cargo new dep_test | |
cp contrib/depCargo.toml dep_test/Cargo.toml | |
cd dep_test | |
- name: Build dependency | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --verbose | |
- name: Clean up | |
run: | | |
cd .. | |
rm -rf dep_test |