Skip to content

Commit

Permalink
Initial (soft) release of Balter
Browse files Browse the repository at this point in the history
Rebasing previous commits to hide the mess.
  • Loading branch information
byronwasti committed Jan 23, 2024
0 parents commit 9a53140
Show file tree
Hide file tree
Showing 32 changed files with 4,829 additions and 0 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use_nix
22 changes: 22 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- 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 @@
/target
playground/
notes.md
Loading

0 comments on commit 9a53140

Please sign in to comment.