fix(ci): use git clone instead of actions/checkout (no node in rust image)
Build and Push / Test (push) Successful in 3m34s
Build and Push / Build and push image (push) Failing after 27s

This commit is contained in:
Story Crater Bot
2026-08-23 17:35:45 -07:00
parent e6fe561c8a
commit ed702fc800
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