fix **/.lua matching in the root #31
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
runs-on: "macos-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install Rust" | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: "stable" | |
components: "rustfmt" | |
- name: "Cache cargo registry" | |
uses: actions/cache@v4 | |
with: | |
path: "~/.cargo/registry" | |
key: "macos-${{ hashFiles('Cargo.toml') }}-cargo-registry" | |
- name: "Cache cargo index" | |
uses: actions/cache@v4 | |
with: | |
path: "~/.cargo/git" | |
key: "macos-${{ hashFiles('Cargo.toml') }}-cargo-index" | |
- name: "Cache cargo build" | |
uses: actions/cache@v4 | |
with: | |
path: "target" | |
key: "macos-${{ hashFiles('Cargo.toml') }}-cargo-build-target" | |
- name: Check formatting | |
run: cargo fmt --all -- --check | |
- name: Build | |
run: cargo build --all --release | |
- name: Test | |
run: cargo test --all |