rename case_sensitive_ext to case_insensitive_ext #229
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: MacOS build dev | |
on: | |
push: | |
branches: [dev] | |
pull_request: | |
branches: [dev] | |
jobs: | |
check: | |
name: Rust MacOS ${{ matrix.rust }} | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
rust: [stable] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install minimal ${{ matrix.rust }} rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
- run: cargo -Vv && rustc -Vv | |
- run: cargo check | |
- run: cargo check --all-features | |
if: ${{ matrix.rust == 'stable' }} | |
- run: cargo fmt --all -- --check | |
if: ${{ matrix.rust == 'stable' }} | |
- run: cargo test | |
if: ${{ matrix.rust == 'stable' }} |