build: bump version for unsafe_pinned feature
#1018
Workflow file for this run
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
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [main, kernel] | |
| pull_request: | |
| schedule: | |
| - cron: '7 7 * * *' | |
| workflow_dispatch: | |
| name: rolling | |
| jobs: | |
| nightly: | |
| runs-on: ubuntu-latest | |
| name: ubuntu / nightly | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: rust-src | |
| - run: cargo install cargo-expand | |
| - run: cargo test --locked | |
| update: | |
| runs-on: ubuntu-latest | |
| name: ubuntu / nightly / updated | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: rust-src | |
| - run: cargo install cargo-expand | |
| - run: cargo update | |
| - run: cargo test --locked | |
| env: | |
| RUSTFLAGS: -D deprecated |