build(deps): bump pragmastat from 11.1.1 to 12.0.0 (#3589) #9751
This file contains hidden or 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 ] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-macos-tests-${{ github.ref }}-1 | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| # Skip CI for MCP-only commits (commit message contains "(mcp):") | |
| if: | | |
| github.event_name != 'push' || | |
| !contains(github.event.head_commit.message, '(mcp):') | |
| # runs-on: self-hosted | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: '3.13' | |
| - name: Installing Rust toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| - name: Setup Rust-cache | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: qsv-macoslatestcache | |
| - name: Remove cargo config from GH runner image which has target-cpu=native set | |
| run: rm -f .cargo/config.toml | |
| - name: Run tests | |
| run: cargo test --verbose --locked --features=apply,fetch,foreach,geocode,luau,python,polars,to,feature_capable,ui |