Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmatnazali authored Jul 17, 2024
0 parents commit 55e50c2
Show file tree
Hide file tree
Showing 13 changed files with 4,631 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/bevy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Bevy

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt update && sudo apt install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea

/target
Loading

0 comments on commit 55e50c2

Please sign in to comment.