gitea workflow fix 1
Some checks failed
Build the release program / Cargo build release (push) Failing after 2m15s

This commit is contained in:
2025-11-09 22:48:19 +02:00
parent fcf6c52896
commit c0a54b5f0a
2 changed files with 15 additions and 2 deletions

View File

@@ -15,6 +15,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: cargo test
- name: Checkout repo
uses: actions/checkout@v4
- name: cargo test
run: cargo test --verbose

View File

@@ -13,8 +13,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Test
- name: Checkout repo
uses: actions/checkout@v4
- name: Update
run: apt update
- name: Check formatting
run: cargo fmt --all -- --check
- name: Run linter
run: cargo clippy -- -D warnings
- name: Test
run: cargo test --verbose
- name: Build release