try xz #50
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
on: [push, pull_request] | |
name: build | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build (Linux) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cargo build --verbose | |
- run: cargo clippy | |
- run: cargo fmt --all --check | |
build-mac: | |
name: Build (MacOS) | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cargo build --verbose |