initial commit

This commit is contained in:
yggverse 2025-09-09 10:35:07 +03:00
parent 99c16e6d4c
commit 4a5b82bf39
7 changed files with 184 additions and 0 deletions

1
.github/FUNDING.yml vendored Normal file
View file

@ -0,0 +1 @@
custom: https://yggverse.github.io/#donate

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