Skip to content

release: 0.11.2

release: 0.11.2 #33

Workflow file for this run

name: Build
on:
push:
branches: []
pull_request:
branches: []
defaults:
run:
shell: bash
env:
CARGO_TERM_COLOR: always
jobs:
all:
name: All
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
- x86_64-apple-darwin
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
runs-on: ${{matrix.os}}
env:
RUSTFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
components: clippy
- name: Info
run: |
rustup --version
cargo --version
cargo clippy --version
- name: Build
run: |
cargo build --bin fyi --target ${{ matrix.target }}
cargo build --bin fyi --release --target ${{ matrix.target }}
- name: Clippy
run: |
cargo clippy --release --all-features --target ${{ matrix.target }}
cargo clippy --release --no-default-features --target ${{ matrix.target }}
- name: Tests (Debug)
run: |
cargo test --all-features --target ${{ matrix.target }}
cargo test --no-default-features --target ${{ matrix.target }}
- name: Tests (Release)
run: |
cargo test --release --all-features --target ${{ matrix.target }}
cargo test --release --no-default-features --target ${{ matrix.target }}