Bump regex from 1.10.6 to 1.11.0 (#1232) #1270
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: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse | |
CI: 1 | |
RUST_BACKTRACE: short | |
RUSTFLAGS: "-D warnings" | |
jobs: | |
build: | |
name: Build (${{ matrix.target }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: windows-latest | |
target: x86_64-pc-windows-msvc | |
test: true | |
- os: windows-latest | |
target: i686-pc-windows-msvc | |
test: true | |
- os: windows-latest | |
target: aarch64-pc-windows-msvc | |
- os: macos-latest | |
target: x86_64-apple-darwin | |
test: true | |
- os: macos-latest | |
target: aarch64-apple-darwin | |
- os: ubuntu-20.04 | |
target: x86_64-unknown-linux-gnu | |
test: true | |
- os: ubuntu-20.04 | |
target: aarch64-unknown-linux-gnu | |
install: sudo apt-get install -y gcc-aarch64-linux-gnu | |
- os: ubuntu-20.04 | |
target: armv7-unknown-linux-gnueabihf | |
install: sudo apt-get install -y gcc-arm-linux-gnueabihf | |
- os: ubuntu-20.04 | |
target: x86_64-unknown-linux-musl | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install cross-compilation dependencies | |
run: ${{ matrix.install }} | |
if: ${{ matrix.install }} | |
- name: Compile | |
run: cargo test --target ${{ matrix.target }} --all-features --no-run --locked | |
- name: Test | |
run: cargo test --target ${{ matrix.target }} --all-features -- --nocapture --quiet | |
if: ${{ matrix.test }} | |
msrv: | |
name: MSRV | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Extract MSRV | |
id: get-msrv | |
run: | | |
echo RUST_VERSION=$(cat Cargo.toml | grep -o "^rust-version = .*" | cut -d '=' -f2 | cut -d '"' -f2) >> $GITHUB_OUTPUT | |
- uses: dtolnay/rust-toolchain@master | |
name: Install Rust ${{ steps.get-msrv.outputs.RUST_VERSION }} | |
with: | |
toolchain: ${{ steps.get-msrv.outputs.RUST_VERSION }} | |
- uses: Swatinem/rust-cache@v2 | |
- name: Verify minimum supported Rust version | |
run: cargo check |