Schedule: Compile and test with the latest nightly on the 1st and the 16th of every month #73
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: | |
schedule: | |
# At 8:00am on the 1st and the 16th. | |
- cron: "0 8 1,16 * *" | |
name: "Schedule: Compile and test with the latest nightly on the 1st and the 16th of every month" | |
jobs: | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
env: | |
RUSTUP_TOOLCHAIN: nightly | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
components: rust-src, rustc-dev, llvm-tools-preview | |
- uses: actions-rs/[email protected] | |
with: | |
command: test |