From 3970f3c69262767878b3eea731a9fedadd5f985d Mon Sep 17 00:00:00 2001 From: Evan-Kim2028 Date: Mon, 21 Oct 2024 17:28:09 -0400 Subject: [PATCH] fix: update github actions script to fix rye installation --- .github/workflows/ci-backend.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml index 6f48be9..d373449 100644 --- a/.github/workflows/ci-backend.yml +++ b/.github/workflows/ci-backend.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: - python-version: [3.11, 3.12] + python-version: [3.12] steps: # Step 1: Checkout the repository @@ -28,7 +28,7 @@ jobs: # Step 2: Install Rye - name: Install Rye run: | - curl -sSL https://rye-up.com/install.sh | bash + curl -sSf https://rye.astral.sh/get | bash echo "$HOME/.local/bin" >> $GITHUB_PATH # Add Rye to PATH # Step 3: Set up Python environment with Rye