diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index f305c0f..5f120a3 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -12,11 +12,8 @@ jobs: - name: checkout code uses: actions/checkout@v6 - - name: install dependencies - run: cargo install --path . - - name: cargo build - run: cargo build --all-targets - + - name: build + run: cargo build - name: format run: cargo fmt -- --check - name: lint