diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bbc9c73..ccda410 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -95,10 +95,8 @@ jobs: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: # Checkout the project - - name: "Checkout branch ${{ github.head_ref }}" + - name: "Checkout branch" uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} # Test Rust code #- name: Run rust wrapper tests # run: cargo test --verbose -- --nocapture @@ -140,10 +138,8 @@ jobs: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: # Checkout the project - - name: "Checkout branch ${{ github.head_ref }}" + - name: "Checkout branch" uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} # Test Rust code #- name: Run rust wrapper tests # run: cargo test --verbose -- --nocapture @@ -177,10 +173,8 @@ jobs: test-doc: runs-on: ubuntu-latest steps: - - name: "Checkout branch ${{ github.head_ref }}" + - name: "Checkout branch" uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - name: "Set up Python 3.11 on Ubuntu" uses: actions/setup-python@v4 with: