Initial commit

This commit is contained in:
Martin Berg Alstad
2024-06-22 17:18:29 +02:00
commit 9eb7c2883e
30 changed files with 949 additions and 0 deletions

18
.github/workflows/build.yaml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Build & test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose