More testing

This commit is contained in:
Janos 2021-07-28 09:18:28 +02:00
parent 8937ff8fd7
commit fc8db34b00
No known key found for this signature in database
GPG key ID: 465EF45E51CBA2BA
2 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,6 @@
on: [push]
on:
push:
pull_request:
name: Self-test
jobs:
self-test:

View file

@ -25,7 +25,7 @@ async function downloadRelease(octokit, org, repo, release, token) {
console.log("Removing tarball...")
fs.unlinkSync("/tmp/gotestfmt.tar.gz")
console.log("Linking gotestfmt...")
execSync("sudo ln -s /usr/local/lib/gotestfmt/gotestfmt /usr/local/bin/gotestfmt")
execSync("sudo ln -s /usr/local/lib/gotestfmt/gotestfmt /usr/bin/gotestfmt")
console.log("Successfully set up gotestfmt.")
return
}