Skip to content

Commit

Permalink
Remove --yes flag (#46)
Browse files Browse the repository at this point in the history
* Update actions to be sample specific

* Remove `--yes` flag
  • Loading branch information
ArnavMehta3000 authored Aug 14, 2024
1 parent e0eb223 commit f215b1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
key: ${{ steps.restore-depcache.outputs.cache-primary-key }}

- name: Build Visualizer
run: xmake build ${{ matrix.prj }} --yes
run: xmake build ${{ matrix.prj }}

- name: Run tests
run: xmake test ${{ matrix.prj }}/*
2 changes: 1 addition & 1 deletion .github/workflows/macosx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
key: ${{ steps.restore-depcache.outputs.cache-primary-key }}

- name: Build Visualizer
run: xmake build ${{ matrix.prj }} --yes
run: xmake build ${{ matrix.prj }}

- name: Run tests
run: xmake test ${{ matrix.prj }}/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
key: ${{ steps.restore-depcache.outputs.cache-primary-key }}

- name: Build Visualizer
run: xmake build ${{ matrix.prj }} --yes
run: xmake build ${{ matrix.prj }}

- name: Run tests
run: xmake test ${{ matrix.prj }}/*

0 comments on commit f215b1d

Please sign in to comment.