tMerge tag 'v0.16.0-dev' into develop #259
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: CI | |
| on: [push, pull_request] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [windows-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Stable | |
| run: cargo test | |
| - name: Clippy | |
| run: | | |
| rustup component add clippy | |
| cargo clippy --all-targets | |
| check-macos-x86_64: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install target | |
| run: rustup update && rustup target add x86_64-apple-darwin | |
| - name: Build | |
| run: cargo build --target=x86_64-apple-darwin |