Skip to content

Commit 044be85

Browse files
authored
Add Initial App Scaffold (#1)
Prototype hacked together for pathfinding.
1 parent 5868249 commit 044be85

30 files changed

+10385
-0
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
check:
14+
name: Check
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: dtolnay/rust-toolchain@stable
19+
with:
20+
components: rustfmt, clippy
21+
- uses: Swatinem/rust-cache@v2
22+
- name: Format
23+
run: cargo fmt --all -- --check
24+
- name: Clippy
25+
run: cargo clippy --all-targets -- -D warnings
26+
- name: Test
27+
run: cargo test

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
/preview
3+
.DS_Store

0 commit comments

Comments
 (0)