Skip to content

Commit

Permalink
feat!: major refactor to make bones independent of bevy with the new …
Browse files Browse the repository at this point in the history
…`bones_framework`. (#132)

Co-authored-by: Jacob LeCoq <[email protected]>
  • Loading branch information
zicklag and bayou-brogrammer authored Aug 21, 2023
1 parent 19748cb commit 6164d35
Show file tree
Hide file tree
Showing 201 changed files with 14,490 additions and 5,916 deletions.
10 changes: 2 additions & 8 deletions .github/bors.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
use_squash_merge = true
cut_body_after = "_ _ _"
status = [
"Lint commit message",
"Check Rust formatting",
"Clippy correctness checks (%)",
"Build Docs",
"Miri tests"
]
cut_body_after = "_ _ _"
status = ["Lint commit message", "Check Rust formatting", "Clippy correctness checks (%)", "Build Docs", "Miri tests"]
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,29 @@ jobs:
command: clippy
args: --target ${{ matrix.config.target }} -- -W clippy::correctness -D warnings

- name: ⚙️ Test
if: matrix.config.target != 'wasm32-unknown-unknown'
uses: actions-rs/cargo@v1
env:
CARGO_TARGET_DIR: ${{ matrix.config.target_dir }}
with:
command: test
args: --workspace

minimal_deps_check:
runs-on: ubuntu-latest
name: 🔧 Check Minimal Dependency Versions
steps:
- name: ⬇️ Checkout Source
uses: actions/checkout@v3

- name: 🧰 Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y -q \
libasound2-dev \
libudev-dev
- name: 🧰 Install Rust Nightly
uses: actions-rs/toolchain@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:
- name: 🔨 Build Rustdoc
run: |
cargo doc --workspace --no-deps
mv target/doc book/src/rustdoc
mkdir -p target/doc-dist
mv target/doc target/doc-dist/rustdoc
- name: 🚀 Deploy
uses: JamesIves/[email protected]
if: ${{ github.ref == 'refs/heads/main' }}
with:
branch: gh-pages
folder: ./book/dist
target-folder: book
folder: target/doc-dist
Loading

0 comments on commit 6164d35

Please sign in to comment.