Skip to content

Commit

Permalink
Fix execution on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhoefler committed Sep 26, 2020
1 parent c20cf12 commit 6fce7ba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,10 @@ jobs:
- name: Build
run: go build

- name: Run the binary
- name: Run the binary on Mac
if: runner.os == 'macOS'
run: cd example && ../cloudbuildgraph

- name: Run the binary on Windows
if: runner.os == 'Windows'
run: cp cloudbuildgraph.exe example && cd example && cloudbuildgraph.exe

0 comments on commit 6fce7ba

Please sign in to comment.