ci: add GitHub Actions workflows with semantic-release auto-versioning

This commit is contained in:
asepharyana
2026-07-13 06:31:08 +07:00
parent 5334c2501b
commit 0512139f03
7 changed files with 245 additions and 1 deletions
+31
View File
@@ -0,0 +1,31 @@
name: CI
on:
push:
branches: ["**"]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
- name: Build
run: cargo build --release
- name: Test
run: cargo test
- name: Clippy
run: cargo clippy -- -D warnings