Skip to content

Commit

Permalink
Publish as_any PR
Browse files Browse the repository at this point in the history
  • Loading branch information
janhohenheim committed Feb 6, 2024
1 parent 6dd2c60 commit 2476af3
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 41 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
toolchain: stable
components: clippy
- name: Cache Cargo build files
uses: Leafwing-Studios/cargo-cache@v1.0.0
uses: Leafwing-Studios/cargo-cache@v1
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Run cargo clippy
Expand All @@ -48,7 +48,7 @@ jobs:
toolchain: stable
components: rustfmt
- name: Cache Cargo build files
uses: Leafwing-Studios/cargo-cache@v1.0.0
uses: Leafwing-Studios/cargo-cache@v1
- name: Run cargo fmt
run: cargo fmt --check --all

Expand All @@ -65,7 +65,7 @@ jobs:
with:
toolchain: stable
- name: Cache Cargo build files
uses: Leafwing-Studios/cargo-cache@v1.0.0
uses: Leafwing-Studios/cargo-cache@v1
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Run cargo doc
Expand All @@ -81,8 +81,10 @@ jobs:
with:
toolchain: stable
- name: Cache Cargo build files
uses: Leafwing-Studios/cargo-cache@v1.0.0
uses: Leafwing-Studios/cargo-cache@v1
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Run cargo test
run: cargo test --workspace --all-features
- name: Run doc tests
run: cargo test --workspace --doc
70 changes: 36 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/bevy_plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_yarnspinner"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust"
homepage = "https://docs.yarnspinner.dev/"
Expand Down
2 changes: 1 addition & 1 deletion crates/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yarnspinner_runtime"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust"
homepage = "https://docs.yarnspinner.dev/"
Expand Down
2 changes: 1 addition & 1 deletion crates/yarnspinner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yarnspinner"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
repository = "https://github.com/YarnSpinnerTool/YarnSpinner-Rust"
homepage = "https://docs.yarnspinner.dev/"
Expand Down

0 comments on commit 2476af3

Please sign in to comment.