chore(deps): update rust crate toml to v0.9.12 #5402
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: Tests | |
| on: | |
| workflow_dispatch: | |
| merge_group: | |
| types: | |
| - checks_requested | |
| pull_request: | |
| push: | |
| branches: | |
| - stable | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| BuildAll: | |
| name: Build | |
| if: ${{ github.event_name == 'merge_group' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install latest nightly Rust toolchain | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| toolchain: nightly | |
| - name: Install Python 3.11 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install Protoc | |
| run: sudo apt install -y protobuf-compiler | |
| - name: Print Rust Version | |
| run: rustc --version --verbose | |
| - name: Run Build | |
| run: python ./x.py build -- python ./x.py clippy -- discord-frontend rust-utilities | |
| TestAll: | |
| name: Test | |
| needs: | |
| - BuildAll | |
| if: ${{ github.event_name == 'merge_group' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install latest nightly Rust toolchain | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| toolchain: nightly | |
| - name: Install Python 3.11 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install Protoc | |
| run: sudo apt install -y protobuf-compiler | |
| - name: Print Rust Version | |
| run: rustc --version --verbose | |
| # - name: Run Build | |
| # run: python ./x.py build -- discord-frontend | |
| # - name: Run Tests | |
| # run: python ./x.py test -- --ui --build-dir=build |