Run compiler tests #402
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: Run compiler tests | |
| on: | |
| schedule: | |
| - cron: "0 6 * * *" # Run daily at 06:00 UTC | |
| workflow_dispatch: # Allow manual dispatching | |
| pull_request: | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| msrv: | |
| name: MSRV Nightly Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| # Note that the downloaded version is dated 2025-08-09. | |
| toolchain: nightly-2025-08-10 | |
| components: rust-src | |
| - run: ./x test | |
| latest: | |
| name: Latest Nightly Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: rust-src | |
| - run: ./x test |