Skip to content

Commit

Permalink
fixup! build: run internet tests in GitHub Actions if changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed Sep 11, 2021
1 parent d34df15 commit 0d2af17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-linux.yml
Expand Up @@ -33,4 +33,4 @@ jobs:
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions"
- name: Test Internet
# Only run if files in test/internet have changed.
run: git diff --name-only origin/HEAD | grep test/internet && make test-internet -j2 V=1
run: if [[ $(git diff --name-only origin/HEAD -- test/internet) ]]; then make test-internet -j2 V=1; fi

0 comments on commit 0d2af17

Please sign in to comment.