Add Gitea release automation
CI / test (push) Failing after 1m1s

This commit is contained in:
2026-06-09 14:53:59 +09:00
parent 70e3dd3cc5
commit b40839a998
3 changed files with 126 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
name: CI
on:
push:
branches:
- main
pull_request:
permissions: read-all
jobs:
test:
runs-on: ubuntu-latest
container:
image: rust:1-bookworm
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: cargo test --locked
- name: Build release binary
run: cargo build --release --locked