Bump syn from 2.0.112 to 2.0.113 #62
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
| name: Run tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| - name: Setup Rust toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@2fcdc490d667999e01ddbbf0f2823181beef6b39 | |
| with: | |
| components: rustfmt, clippy | |
| - name: Run RustFMT | |
| uses: actions-rust-lang/rustfmt@559aa3035a47390ba96088dffa783b5d26da9326 | |
| - name: Run Clippy | |
| run: cargo clippy --all-targets --all-features | |
| - name: Run tests | |
| run: cargo test --verbose --all-targets --all-features | |
| - name: Run documentation tests | |
| run: cargo test --verbose --doc --all-features |