Skip to content

Commit

Permalink
Added nextest and audit to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
rarebreed committed Feb 27, 2023
1 parent c75d0fc commit 2870290
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,15 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: taiki-e/install-action@nextest
- name: Prerequisites
run: sudo apt-get install clang pkg-config libx11-dev libasound2-dev libudev-dev mesa-vulkan-drivers
- name: Cargo plugins
run: cargo install cargo-audit
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
run: cargo nextest run
- name: Audit
run: cargo audit
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ exclude = [

resolver = "2"

[workspace.package]
version = "0.1.0"
authors = ["Sean Toner <[email protected]>"]
rust-version = "1.64"
description = "Virtual Table Top RPG service and modular game engine"
edition = "2021"


[workspace.dependencies]
bevy = { version = "0.9", features = ["bevy_ui"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion protean/src/engine/probability.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Tasks define how actions are resolved
//!
//!
//! Die examples:
//!
//! ```
Expand Down

0 comments on commit 2870290

Please sign in to comment.