Stage 0: Rust-CI (clippy + test + musl-Build)
CI / test (push) Failing after 5m25s

This commit is contained in:
2026-06-22 08:03:04 +00:00
parent ae8d186862
commit 29708e98ef
+31
View File
@@ -0,0 +1,31 @@
name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
targets: x86_64-unknown-linux-musl
- uses: Swatinem/rust-cache@v2
- name: Clippy (inkl. Check)
run: cargo clippy --all-targets -- -D warnings
- name: Tests
run: cargo test
- name: Build (musl static, x86_64)
run: |
sudo apt-get update && sudo apt-get install -y musl-tools
cargo build --release --target x86_64-unknown-linux-musl --bin dtrack-stdio