Use Bevy state API for client and server states #563
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: Dependencies | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - "deny.toml" | |
| pull_request: | |
| paths: | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| - "deny.toml" | |
| schedule: | |
| - cron: "0 0 * * 0" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| dependencies: | |
| name: Check dependencies | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repo | |
| uses: actions/checkout@v4 | |
| - name: Check dependencies | |
| uses: EmbarkStudios/cargo-deny-action@v2 | |
| with: | |
| arguments: --all-features --workspace | |
| command-arguments: -D warnings |