build(deps): bump toml_edit from 0.20.6 to 0.20.7 #805
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-test" | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
- staging # for Bors | |
- trying # for Bors | |
merge_group: | |
schedule: | |
- cron: '00 05 * * *' | |
jobs: | |
test: | |
name: test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
build: [ubuntu-stable, macos-stable, win-gnu-stable, win-msvc-stable, ubuntu-beta, ubuntu-nightly] | |
include: | |
- build: ubuntu-stable | |
os: ubuntu-latest | |
rust: stable | |
- build: macos-stable | |
os: macOS-latest | |
rust: stable | |
- build: win-gnu-stable | |
os: windows-latest | |
rust: stable-x86_64-gnu | |
- build: win-msvc-stable | |
os: windows-latest | |
rust: stable | |
- build: ubuntu-beta | |
os: ubuntu-latest | |
rust: beta | |
- build: ubuntu-nightly | |
os: ubuntu-latest | |
rust: nightly | |
steps: | |
- name: checkout_repository | |
uses: actions/checkout@v4 | |
# We would prefer to use `dtolnay/rust-toolchain@master with toolchain=${{ matrix.rust }}` or `rustup update ${{ matrix.rust }}`. | |
# However, when using either we run into a linking issue: | |
# `error: could not create link from 'C:\\Users\\runneradmin\\.cargo\\bin\\rustup.exe' to 'C:\\Users\\runneradmin\\.cargo\\bin\\cargo.exe'\n" })', tests\find_msrv.rs:156:39` | |
# I find the message odd, because we only need to install the toolchain, not set it as the default, and replace the | |
# binary; so what is meant by "link" in the above error? | |
- name: install_rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
override: true | |
profile: minimal | |
- name: fetch | |
run: cargo fetch --verbose | |
- name: build | |
run: cargo build --verbose | |
- name: test_all | |
run: cargo test --verbose --all -- --test-threads=1 |