Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crate prep 0.0.2 #44

Merged
merged 27 commits into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
26dc2ad
Fixed links in README.md [skip ci]
BlackPhlox Jul 16, 2023
6ae8f3e
Merge pull request #37 from BlackPhlox/BlackPhlox-fix_readme
BlackPhlox Jul 16, 2023
0eb6ddf
Update README.md
BlackPhlox Jul 16, 2023
ff6e18f
Merge pull request #38 from BlackPhlox/BlackPhlox-typo_fix
BlackPhlox Jul 16, 2023
9a57a3d
Update to bevy 0.12
BeastLe9enD Nov 23, 2023
b214423
Updated submodule to branch dolly bevy_0.12
BlackPhlox Nov 24, 2023
f0f08d4
Updated submodule to branch dolly bevy_0.12
BlackPhlox Nov 24, 2023
6ebd5b4
Merge pull request #39 from ProjectKML/main
BlackPhlox Nov 26, 2023
dcd1f44
Added gizmo and new example (wip)
BlackPhlox Nov 26, 2023
7c4885c
Fixed leafwing dependency issue
BlackPhlox Dec 3, 2023
49a04ca
Updated dependencies and added Cargo.lock
BlackPhlox Dec 3, 2023
eaadc37
Updated readme
BlackPhlox Dec 3, 2023
026eb74
Updated readme
BlackPhlox Dec 3, 2023
6044d48
Added bevy_main ci check
BlackPhlox Dec 3, 2023
7448699
Added comment
BlackPhlox Dec 3, 2023
75ed08f
Removed header
BlackPhlox Dec 3, 2023
ec07d2a
Readded alternatives' comments
BlackPhlox Dec 3, 2023
25eef7b
Merge pull request #42 from BlackPhlox/bevy_0.12
BlackPhlox Dec 3, 2023
e32c28a
Merge branch 'crate' into main
BlackPhlox Dec 3, 2023
521c597
Merge branch 'crate' into crate_prep
BlackPhlox Dec 3, 2023
889c396
Update README.md
BlackPhlox Dec 3, 2023
4a32cba
Update README.md
BlackPhlox Dec 3, 2023
c96c009
Fix main merge error
BlackPhlox Dec 3, 2023
c076b4e
Merge pull request #46 from BlackPhlox/main_fix
BlackPhlox Dec 3, 2023
6df28db
Merge pull request #45 from BlackPhlox/main
BlackPhlox Dec 3, 2023
a41ab38
Updated toml
BlackPhlox Dec 3, 2023
b67bce6
Added bevy transform and math dependencies
BlackPhlox Dec 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/bevy_main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# From:
# https://bevy-cheatbook.github.io/setup/bevy-git.html#ci-setup
name: check if code still compiles

on:
schedule:
- cron: '0 8 * * 5'

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Check code
run: cargo update && cargo check --lib --examples
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,3 @@

# These are backup files generated by rustfmt
**/*.rs.bk

**/Cargo.lock

.vscode
Loading
Loading