rolling #370
This file contains 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: | |
- cron: '7 7 * * *' | |
# Cancel CI when a new commit is pushed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
name: rolling | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
name: ubuntu / beta / updated | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install beta | |
uses: dtolnay/rust-toolchain@beta | |
- name: cargo update | |
run: cargo update | |
- name: cargo test | |
run: cargo test --locked --all-features --all-targets | |
env: | |
RUSTFLAGS: -D deprecated |