Skip to content

fix(path): correctly handle forbidden/reserved filenames #3

fix(path): correctly handle forbidden/reserved filenames

fix(path): correctly handle forbidden/reserved filenames #3

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
test_all_features:
name: Run tests - All features enabled
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --all-features
- run: cargo test --verbose --all-features
test_no_default_features:
name: Run tests - No features enabled
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose --no-default-features
- run: cargo test --verbose --no-default-features