fix(ci): use git clone instead of actions/checkout (no node in rust image)

This commit is contained in:
Story Crater Bot
2026-08-23 17:35:45 -07:00
parent 4a10c53e18
commit 9f6502aec4
2 changed files with 10 additions and 4 deletions
+5 -2
View File
@@ -15,8 +15,11 @@ jobs:
name: Test
runs-on: rust
steps:
- uses: actions/checkout@v4
- name: Clone repo
run: |
git clone --depth 1 --branch ${{ github.ref_name }} \
${{ github.server_url }}/${{ github.repository }}.git .
- name: Run tests
run: cargo test --all
+5 -2
View File
@@ -15,8 +15,11 @@ jobs:
name: Test
runs-on: rust
steps:
- uses: actions/checkout@v4
- name: Clone repo
run: |
git clone --depth 1 --branch ${{ github.ref_name }} \
${{ github.server_url }}/${{ github.repository }}.git .
- name: Run tests
run: cargo test --all