We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ccc9f4 commit dbe0d90Copy full SHA for dbe0d90
.github/workflows/dev-test.yaml
@@ -41,6 +41,7 @@ jobs:
41
- name: Checkout
42
uses: actions/checkout@v2
43
with:
44
+ ref: ${{ github.head_ref }}
45
fetch-depth: 1
46
47
- name: Set up Python
@@ -106,6 +107,12 @@ jobs:
106
107
name: codecov-umbrella
108
fail_ci_if_error: true
109
110
+ # - name: Checkout head branch (if Pull Request)
111
+ # if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.7 && github.event_name == 'pull_request'
112
+ # run: |
113
+ # git fetch origin $GITHUB_HEAD_REF
114
+ # git checkout $GITHUB_HEAD_REF
115
+
116
- name: Run prerelease to check packaging compatibilty
117
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.7
118
run: prerelease --no-input
0 commit comments