Basic repl

This commit is contained in:
Chance 2024-12-01 16:02:06 -05:00 committed by lily
commit 662ea67aa0
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
19 changed files with 564 additions and 0 deletions

29
.github/workflows/rust.yml vendored Normal file
View file

@ -0,0 +1,29 @@
name: Rust
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Check formatting
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy -- -D warnings