Skip to content

Commit

Permalink
Test handle
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Jul 13, 2024
1 parent 18770d3 commit 44780ab
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test
on:
push:

defaults:
run:
shell: bash

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Download
run: |
curl -O https://download.sysinternals.com/files/Handle.zip
unzip -d handle Handle.zip
echo "$PWD/handle" >> $GITHUB_PATH
- name: Test
run: exit 1
- name: Debug
if: failure()
run: handle

0 comments on commit 44780ab

Please sign in to comment.