From 619c928eb37a71eb5df9bd27fa2a10b71c46c097 Mon Sep 17 00:00:00 2001 From: Phillip Johnsen Date: Wed, 21 Aug 2019 21:55:06 +0200 Subject: [PATCH] Delete old GitHub Actions workflow file As the hottest of the press features of GitHub Actions requires using YAML rather than HCL. --- .github/main.workflow | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index dfeb6b5..0000000 --- a/.github/main.workflow +++ /dev/null @@ -1,15 +0,0 @@ -workflow "Verify changes on push" { - resolves = ["Run unit tests"] - on = "push" -} - -action "Install dependencies" { - uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680" - args = "install" -} - -action "Run unit tests" { - uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680" - needs = "Install dependencies" - args = "test" -}