Skip to content

build(deps): bump tempfile from 3.5.0 to 3.8.1 #707

build(deps): bump tempfile from 3.5.0 to 3.8.1

build(deps): bump tempfile from 3.5.0 to 3.8.1 #707

name: canonical-path
on:
pull_request:
paths:
- "canonical-path/**"
- "Cargo.*"
push:
branches: main
defaults:
run:
working-directory: canonical-path
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"
jobs:
test:
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- 1.60.0 # MSRV
- stable
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
profile: minimal
- run: cargo test --release
- run: cargo test --release --all-features
wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
override: true
profile: minimal
- run: cargo build --target wasm32-unknown-unknown