From ce56b61cb79516a6e3f4fd2f314816cc6ef6edaf Mon Sep 17 00:00:00 2001 From: phoenix Date: Wed, 12 Mar 2025 20:56:19 -0400 Subject: [PATCH] Cleanup --- .github/workflows/rust-ubuntu-latest.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/rust-ubuntu-latest.yml b/.github/workflows/rust-ubuntu-latest.yml index 4542013..88b1479 100644 --- a/.github/workflows/rust-ubuntu-latest.yml +++ b/.github/workflows/rust-ubuntu-latest.yml @@ -24,22 +24,15 @@ jobs: - name: Build run: | - echo ${{ env.THIS_IS }} mkdir -p ~/.ssh echo "$EXTREPO_KEY" > ~/.ssh/gitlab_deploy_key chmod 600 ~/.ssh/gitlab_deploy_key ssh-keyscan gitlab.com >> ~/.ssh/known_hosts eval $(ssh-agent -s) ssh-add -v ~/.ssh/gitlab_deploy_key - cargo build --release --verbose + cargo build --release env: EXTREPO_KEY: ${{ secrets.GITLAB_TOKEN }} - - name: Echo Test Start Message - run: echo "Starting Rust tests..." - - name: Run tests - run: cargo test --verbose - - - name: Echo End Message - run: echo "Rust build and test process completed." \ No newline at end of file + run: cargo test --verbose \ No newline at end of file