GitHub Actions: Modernize all workflows #538
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
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| name: Linux aarch64 | |
| jobs: | |
| check: | |
| name: Build | |
| runs-on: ubuntu-22.04-arm | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Rust | |
| uses: dtolnay/[email protected] | |
| - name: Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| - name: cargo build | |
| run: cargo build |