Skip to content

build(deps): bump url from 2.5.3 to 2.5.4 #235

build(deps): bump url from 2.5.3 to 2.5.4

build(deps): bump url from 2.5.3 to 2.5.4 #235

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
merge_group:
types: [checks_requested]
push:
branches: [main]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
read_msrv:
name: Read MSRV
uses: actions-rust-lang/msrv/.github/workflows/[email protected]
test:
needs: read_msrv
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
- { name: msrv, version: "${{ needs.read_msrv.outputs.msrv }}" }
- { name: stable, version: stable }
name: Test / ${{ matrix.toolchain.name }}
steps:
- uses: actions/checkout@v4
- name: Install Rust (${{ matrix.toolchain.name }})
uses: actions-rust-lang/[email protected]
with:
toolchain: ${{ matrix.toolchain.version }}
- name: Test
run: cargo test --workspace