Skip to content

Commit

Permalink
Added scaffold for RViD
Browse files Browse the repository at this point in the history
  • Loading branch information
TheButlah committed Nov 21, 2023
1 parent ef7b13c commit 5190f69
Show file tree
Hide file tree
Showing 17 changed files with 4,077 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.gltf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
33 changes: 33 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache cargo dependencies
uses: Swatinem/rust-cache@v2

- name: Check formatting
run: cargo fmt --check --all

check:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache cargo dependencies
uses: Swatinem/rust-cache@v2
- name: Clippy lints
run: cargo clippy --all --all-features --all-targets --no-deps
- name: Cargo Doc
run: cargo doc --all --all-features --no-deps --document-private-items
- name: Cargo Test
run: cargo test --all --all-features --all-targets
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/.idea
/.vscode
/target

*.swp
.DS_Store
.direnv
.envrc
Loading

0 comments on commit 5190f69

Please sign in to comment.