Merge pull request #1746 from cryspen/rengine-monadic-phase #5497
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: Test Workspace | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| merge_group: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-workspace: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| - windows-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Test | |
| run: cargo test --workspace --exclude hax-engine-names-extract --exclude hax-rust-engine --verbose | |
| - name: Test `hax-frontend-exporter` with feature `rustc` off | |
| run: cargo check -p hax-frontend-exporter --no-default-features --verbose | |
| no-std-lib: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| targets: thumbv7em-none-eabi | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Build no-std | |
| run: | | |
| rustup target add thumbv7em-none-eabi | |
| cargo build -p hax-lib --target thumbv7em-none-eabi |