From 23180b66e352b9870809aee3a6c776b227f20846 Mon Sep 17 00:00:00 2001 From: Lawrence Bethlenfalvy Date: Sat, 11 Apr 2026 11:07:04 +0000 Subject: [PATCH] Deleted Gitea workflow --- .gitea/workflows/rust.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .gitea/workflows/rust.yml diff --git a/.gitea/workflows/rust.yml b/.gitea/workflows/rust.yml deleted file mode 100644 index 3e795dd..0000000 --- a/.gitea/workflows/rust.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Rust - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Install rust toolchain - run: curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly - - name: Build - run: $HOME/.cargo/bin/cargo build --verbose - - name: Run tests - run: $HOME/.cargo/bin/cargo test --verbose - - name: Clippy - run: $HOME/.cargo/bin/cargo clippy - - name: Formatting - run: $HOME/.cargo/bin/cargo +nightly fmt --check - - name: No unqualified imports from orchid_api - run: $HOME/.cargo/bin/cargo xtask check-api-refs