This commit is contained in:
Sapphire
2025-12-12 22:54:00 +00:00
committed by futile
parent 60f1868334
commit 27eeb48044
+21
View File
@@ -0,0 +1,21 @@
name: Build
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Check formatting
run: cargo fmt --check
- name: Clippy
run: cargo clippy