feat: forgejo action
Some checks failed
Build/test / Build and test (push) Failing after 40s

This commit is contained in:
Elijah McMorris 2025-08-25 15:50:09 -07:00
parent efcbc2697c
commit 5dbd437296
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8

View file

@ -0,0 +1,21 @@
on: [push]
name: Build/test
jobs:
build_and_test:
name: Build and test
runs-on: bookworm
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
- uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check