Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bungogood committed Nov 16, 2023
0 parents commit 9ed6ecc
Show file tree
Hide file tree
Showing 7 changed files with 542 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build

on: [push, pull_request]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Editor
.vscode/

# Rust
debug/
target/

# Project
logs/
/data/
Loading

0 comments on commit 9ed6ecc

Please sign in to comment.