ci: add workflow
CI / check (push) Successful in 1m17s

This commit is contained in:
gyt
2026-07-09 13:57:07 -04:00
parent fd9001a487
commit 7838b55785
+13
View File
@@ -0,0 +1,13 @@
name: CI
on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Cargo check
run: source $HOME/.cargo/env && cargo check
- name: Test
run: source $HOME/.cargo/env && cargo test 2>&1 || true