From 13314ed8968f6b71ed37b9d044f53a9cc9d4487a Mon Sep 17 00:00:00 2001 From: KD Date: Sat, 1 Feb 2025 21:52:54 -0500 Subject: [PATCH] Delete .github/workflows/rust.yml --- .github/workflows/rust.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml deleted file mode 100644 index 2bef732..0000000 --- a/.github/workflows/rust.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Rust - -on: - push: - branches: [ "rust-lg" ] - pull_request: - branches: [ "rust-lg" ] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Build - run: cargo build --verbose - - name: Run tests - run: cargo test --verbose -