Skip to content

Add more try_* fns to Request (#929) #2361

Add more try_* fns to Request (#929)

Add more try_* fns to Request (#929) #2361

Workflow file for this run

name: ci-macos
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- '**.rs' # only execute on changes to go files
- '**/Cargo.toml' # or dependency updates
- '.github/workflows/**' # or workflow changes
push:
branches:
- main
paths:
- '**.rs' # only execute on changes to go files
- '**/Cargo.toml' # or dependency updates
- '.github/workflows/**' # or workflow changes
jobs:
test:
strategy:
fail-fast: false
matrix:
version:
- stable
# - nightly
name: Check ${{ matrix.version }} - x86_64-apple-darwin
runs-on: macOS-12
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.version }}
components: rustfmt, clippy
- name: check build
run: cargo check --all --bins --examples --tests
- name: check release build
run: cargo check --all --bins --examples --tests --release
- name: Cargo test
timeout-minutes: 40
run: cargo test --all --all-features --no-fail-fast -- --nocapture