gitea workflow + xdg 3 fix
CI / build (push) Failing after 1s

This commit is contained in:
2026-08-25 20:01:00 +00:00
parent 9080317b6c
commit e21ef0ab0e
3 changed files with 11 additions and 11 deletions
+24
View File
@@ -0,0 +1,24 @@
name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: amd64
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: cargo check
run: cargo check
- name: cargo clippy
run: cargo clippy -- -D warnings
- name: cargo test
run: cargo test
- name: cargo fmt --check
run: cargo fmt -- --check