Skip to content

Run compiler tests #400

Run compiler tests

Run compiler tests #400

Workflow file for this run

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