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 68e02e6 commit e55c70aCopy full SHA for e55c70a
.github/workflows/test.yml
@@ -21,9 +21,12 @@ jobs:
21
run: pip install -r requirements.txt
22
- name: Run tests
23
run: pytest
24
- - uses: compiler-research/git-spell-check@${{ github.event.pull_request.base.ref }}
+ - uses: compiler-research/git-spell-check@${{ github.event.pull_request.base.ref || github.head_ref || github.ref_name}}
25
with:
26
debug: 1
27
+ - name: Dump GitHub context
28
+ if: ${{ failed() }}
29
+ run: echo "${{ toJSON(github) }}"
30
- name: Setup tmate session
31
if: ${{ !cancelled() && runner.debug }}
32
uses: mxschmitt/action-tmate@v3
0 commit comments