Soundness fix (require inner UnsafeCell
wrapper for payload for cer…
#49
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
name: Rust Auto Format | |
permissions: | |
contents: write | |
on: | |
push: | |
branches: [ develop ] | |
# # Deactivated pending further investigation into #36. | |
# pull_request: | |
# branches: [ develop ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# github.ref is useless on pull requests. | |
# github.head_ref only exists on pull requests. | |
ref: ${{ github.head_ref || github.ref }} | |
- uses: actions-rs/[email protected] | |
with: | |
toolchain: nightly | |
profile: minimal | |
components: rustfmt | |
- run: cat CI.toml >> Cargo.toml | |
- run: cargo +nightly fmt --all | |
- uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Automatic formatting commit (cargo +nightly fmt) | |
file_pattern: '**/*.rs' | |
commit_author: Rust Format Action <[email protected]> |