Skip to content

Commit

Permalink
Update cpp.yml (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtuxa committed Dec 29, 2023
1 parent 2457ca8 commit 7f88516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
- name: clean directory
run: sudo rm -rf /tmp/test /tmp_incorrect
- name: Test if correct version
run: mkdir /tmp/test && cd /tmp/test && meson-init-cpp foo 0.1 14 && make && ./builddir/foo
run: cd $(mktemp) && meson-init-cpp foo 0.1 14 && make && ./builddir/foo
- name: Test if version is incorrect
run: cd $(mkdir /tmp/test_incorrect) && meson-init-cpp foo 0.1 3000 && make && exit 0
run: cd $(mktemp) && meson-init-cpp foo 0.1 3000 && make && exit 0

0 comments on commit 7f88516

Please sign in to comment.