Skip to content

Commit

Permalink
Merge pull request #42 from BlackPhlox/bevy_0.12
Browse files Browse the repository at this point in the history
Upgraded to Bevy 0.12 and latest LWIM
  • Loading branch information
BlackPhlox authored Dec 3, 2023
2 parents ff6e18f + ec07d2a commit 25eef7b
Show file tree
Hide file tree
Showing 11 changed files with 4,037 additions and 58 deletions.
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: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/target

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

**/Cargo.lock
**/*.rs.bk
Loading

0 comments on commit 25eef7b

Please sign in to comment.