Skip to content

feat(macros): introduce register_blazemap_id_wrapper and `register_… #26

feat(macros): introduce register_blazemap_id_wrapper and `register_…

feat(macros): introduce register_blazemap_id_wrapper and `register_… #26

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: 1
RUST_LOG: blazemap
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build project
run: cargo build --all-targets --all-features
docs:
name: "Docs"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build Documentation
run: cargo doc --all --no-deps --release
clippy:
name: "Clippy"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Add clippy
run: rustup component add clippy
- name: Clippy version
run: cargo clippy --version
- name: Run clippy
run: cargo clippy
- name: Run clippy with all features
run: cargo clippy --all-targets --all-features
- name: Run clippy on tests
run: cargo clippy --tests --all-targets --all-features
tests:
name: "Tests"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run tests
run: cargo test
- name: Run tests with all features
run: cargo test --all-features
- name: Run tests with all features in release mode
run: cargo test --all-features --release
miri:
name: "Miri"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
- name: Run tests with Miri
run: cargo miri test --all-features