Skip to content

Commit 71404ff

Browse files
committed
Move up debug info
1 parent 62439b4 commit 71404ff

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/ci_linux.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ jobs:
4343
- name: Checkout repository
4444
uses: actions/checkout@v4
4545

46+
- name: Debug Info
47+
if: github.event_name == 'pull_request'
48+
run: |
49+
echo "Event Name: ${{ github.event_name }}"
50+
echo "Author Association: ${{ github.event.pull_request.author_association }}"
51+
echo "Is Owner/Member?: ${{ contains(fromJson('["OWNER", "MEMBER"]'), github.event.pull_request.author_association) }}"
52+
4653
- name: Verify CUDA, Rust installation
4754
run: |
4855
nvcc --version
@@ -85,12 +92,6 @@ jobs:
8592
path: target/debug
8693
retention-days: 1
8794

88-
- name: Debug Info
89-
if: github.event_name == 'pull_request'
90-
run: |
91-
echo "Event Name: ${{ github.event_name }}"
92-
echo "Author Association: ${{ github.event.pull_request.author_association }}"
93-
echo "Is Owner/Member?: ${{ contains(fromJson('[\"OWNER\", \"MEMBER\"]'), github.event.pull_request.author_association) }}"
9495

9596
test:
9697
name: ${{ matrix.variance.name }}

0 commit comments

Comments
 (0)