Skip to content

Commit

Permalink
Merge pull request #44 from BlackPhlox/crate_prep
Browse files Browse the repository at this point in the history
Crate prep 0.0.2
  • Loading branch information
BlackPhlox authored Dec 3, 2023
2 parents 0a64028 + b67bce6 commit 741e33e
Show file tree
Hide file tree
Showing 11 changed files with 4,035 additions and 65 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: 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

0 comments on commit 741e33e

Please sign in to comment.