An experimental, status effects-as-entities system for Bevy.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add github workflows.

+48
+24
.github/workflows/publish.yml
··· 1 + name: Publish to crates.io 2 + 3 + on: 4 + push: 5 + tags: ['v*'] 6 + 7 + env: 8 + CARGO_TERM_COLOR: always 9 + 10 + jobs: 11 + publish: 12 + 13 + runs-on: ubuntu-latest 14 + 15 + permissions: 16 + id-token: write # Required for OIDC token exchange 17 + 18 + steps: 19 + - uses: actions/checkout@v4 20 + - uses: rust-lang/crates-io-auth-action@v1 21 + id: auth 22 + - run: cargo publish 23 + env: 24 + CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
+24
.github/workflows/rust.yml
··· 1 + name: Rust 2 + 3 + on: 4 + push: 5 + branches: [ "master" ] 6 + pull_request: 7 + branches: [ "master" ] 8 + 9 + env: 10 + CARGO_TERM_COLOR: always 11 + 12 + jobs: 13 + build: 14 + 15 + runs-on: ubuntu-latest 16 + 17 + steps: 18 + - uses: actions/checkout@v4 19 + - name: Test 20 + run: cargo test --verbose 21 + - name: Test with features 22 + run: cargo test --all-features --verbose 23 + - name: Check format 24 + run: cargo fmt --check