diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33d6eaf..c95ff25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,10 @@ jobs: toolchain: ${{ matrix.rust }} - uses: Swatinem/rust-cache@v2 - uses: taiki-e/install-action@cargo-hack + - name: Configure git + run: | + git config --global user.name "Test User" + git config --global user.email "test_user@example.com" - name: Build run: cargo test --workspace --no-run - name: Test diff --git a/.github/workflows/rust-next.yml b/.github/workflows/rust-next.yml index f3c915f..d1576bc 100644 --- a/.github/workflows/rust-next.yml +++ b/.github/workflows/rust-next.yml @@ -36,6 +36,10 @@ jobs: with: toolchain: ${{ matrix.rust }} - uses: Swatinem/rust-cache@v2 + - name: Configure git + run: | + git config --global user.name "Test User" + git config --global user.email "test_user@example.com" - uses: taiki-e/install-action@cargo-hack - name: Build run: cargo test --workspace --no-run @@ -52,6 +56,10 @@ jobs: with: toolchain: stable - uses: Swatinem/rust-cache@v2 + - name: Configure git + run: | + git config --global user.name "Test User" + git config --global user.email "test_user@example.com" - uses: taiki-e/install-action@cargo-hack - name: Update dependencies run: cargo update