chore: Release mrh version 0.12.6 #80
Workflow file for this run
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: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
name: ${{ matrix.os }} (${{ matrix.rust }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
rust: | |
- 1.70.0 | |
- stable | |
# https://github.com/actions/virtual-environments#available-environments | |
os: | |
- macOS-11 | |
- macOS-12 | |
- macOS-13 | |
- ubuntu-20.04 | |
- ubuntu-22.04 | |
- windows-2019 | |
- windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install ${{ matrix.rust }} toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Build | |
run: cargo build | |
- name: Build (with "json" feature) | |
run: cargo build --features json | |
- name: Build (with all features) | |
run: cargo build --all-features | |
- name: Build (with no features) | |
run: cargo build --no-default-features | |
security-audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: rustsec/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |