From 3b0ac4fa38b7614df26a7095b75ca763e48aa45d Mon Sep 17 00:00:00 2001 From: Pasha Stetsenko Date: Tue, 21 Nov 2023 09:29:47 -0800 Subject: [PATCH] minor --- .github/workflows/build-and-test-windows.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-test-windows.yml b/.github/workflows/build-and-test-windows.yml index abfd39d37..0c106808a 100644 --- a/.github/workflows/build-and-test-windows.yml +++ b/.github/workflows/build-and-test-windows.yml @@ -24,10 +24,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 - - - name: Fetch remote branch - run: | - git fetch origin main + with: + fetch-depth: 0 - name: Prepare environment variables run: | @@ -69,10 +67,10 @@ jobs: python -m pip install --upgrade pip python ci/ext.py wheel echo "DT_WHEEL=$(ls dist/*-cp38-*.whl)" >> $env:GITHUB_ENV - echo "DT_WHEEL = $env:DT_WHEEL" - name: Print build information run: | + echo "DT_WHEEL = $env:DT_WHEEL" cat src/datatable/_build_info.py - name: Install and test