initial commit

This commit is contained in:
yggverse 2025-08-20 02:58:40 +03:00
parent f2b0a1979d
commit 8e7df9ff72
14 changed files with 1011 additions and 0 deletions

25
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update
- run: cargo update
- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets
- run: cargo build --verbose
- run: cargo test --verbose