Skip to content

fix(boil): Improve VersionExt::is_floating impl #75

fix(boil): Improve VersionExt::is_floating impl

fix(boil): Improve VersionExt::is_floating impl #75

Workflow file for this run

---
name: Build boil
on:
pull_request:
paths:
- ".github/workflows/boil_pr.yaml"
- "rust-toolchain.toml"
- "rust/boil/**.rs"
- "Cargo.*"
permissions:
contents: read
env:
RUST_TOOLCHAIN_VERSION: 1.95.0
jobs:
# This job is always run to ensure we don't miss any new upstream advisories
cargo-deny:
name: Run cargo-deny
runs-on: ubuntu-latest
# Prevent sudden announcement of a new advisory from failing CI
continue-on-error: ${{ matrix.checks == 'advisories' }}
strategy:
matrix:
checks:
- advisories
- bans licenses sources
steps:
- name: Checkout Repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Run cargo-deny
uses: EmbarkStudios/cargo-deny-action@3fd3802e88374d3fe9159b834c7714ec57d6c979 # v2.0.15
with:
command: check ${{ matrix.checks }}
build:
name: Build boil
needs:
- cargo-deny
strategy:
fail-fast: false
matrix:
targets:
- { target: aarch64-unknown-linux-gnu, os: ubuntu-24.04-arm }
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest }
- { target: aarch64-apple-darwin, os: macos-latest }
runs-on: ${{ matrix.targets.os }}
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Setup Rust Toolchain
env:
RUST_TARGETS: ${{ matrix.targets.target }}
shell: bash
run: rustup toolchain install "${RUST_TOOLCHAIN_VERSION}" --target "${RUST_TARGETS}"
- name: Build Binary
env:
RUST_TARGETS: ${{ matrix.targets.target }}
run: cargo build --target "${RUST_TARGETS}" --package boil