ci: consolidate tests on github runners #3
Workflow file for this run
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: Code Quality (rustfmt and clippy) | |
| on: [pull_request, create] | |
| jobs: | |
| build: | |
| if: github.event_name == 'pull_request' | |
| name: Integration Tests (aarch64) | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| rust: | |
| - stable | |
| target: | |
| - aarch64-apple-darwin | |
| steps: | |
| - name: Code checkout | |
| uses: actions/checkout@v2 | |
| - name: Install Rust toolchain (${{ matrix.rust }}) | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| target: ${{ matrix.target }} | |
| override: true | |
| components: rustfmt, clippy | |
| - name: Set up Homebrew | |
| id: set-up-homebrew | |
| uses: Homebrew/actions/setup-homebrew@master | |
| - name: Install dependencies | |
| run: brew tap slp/krunkit && brew install virglrenderer | |
| - name: Formatting (rustfmt) | |
| run: cargo clippy --features efi,gpu |