Temporarily clean repository before building on CI

Antonio Scandurra and Nathan Sobo created

Co-Authored-By: Nathan Sobo <nathan@zed.dev>

Change summary

.github/workflows/ci.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

.github/workflows/ci.yml 🔗

@@ -38,7 +38,7 @@ jobs:
       - name: Checkout repo
         uses: actions/checkout@v2
         with:
-          clean: false
+          clean: true
             
       - name: Run tests
         run: cargo test --workspace --no-fail-fast
@@ -74,7 +74,7 @@ jobs:
       - name: Checkout repo
         uses: actions/checkout@v2
         with:
-          clean: false
+          clean: true
 
       - name: Validate version
         if: ${{ startsWith(github.ref, 'refs/tags/v') }}