aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorMichael Camilleri <mike@inqk.net>2021-10-23 09:08:13 +0900
committerMichael Camilleri <mike@inqk.net>2021-10-23 09:14:18 +0900
commit3032ce9f7bccc4efb46bf8c0400058aca7da7b41 (patch)
treeee4a38c6b23b4b4d43fa2bd3def37087ec4cbb7b /.github
parentMerge pull request #48 from pepe/request-body-size (diff)
Add GitHub workflow to automate tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..9104fa1
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,16 @@
+name: test
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: "Test project"
+ uses: pyrmont/action-janet-test@v2