CI: Properly skip PRs

This commit is contained in:
diamondburned 2021-01-28 13:41:43 -08:00
parent 00ec43c794
commit c43fe15964
1 changed files with 4 additions and 1 deletions

View File

@ -22,7 +22,10 @@ tasks:
- unit: cd arikawa && go test -tags unitonly -race ./...
- integration: |-
sh -c '
test -f ~/.env || exit
test -f ~/.env || {
echo "Skipped integration tests."
exit 0
}
cd arikawa
go get ./...