From fcc19c4b8c6a62649691b12ead6d237315d4fa94 Mon Sep 17 00:00:00 2001
From: Ellis Percival <flyte@failcode.co.uk>
Date: Mon, 18 Jan 2021 19:35:55 +0000
Subject: [PATCH] Initial trial of Github actions

---
 .github/workflows/test.yml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 .github/workflows/test.yml

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..625f44e
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,13 @@
+name: Run tests
+on: push
+
+jobs:
+  test:
+    name: Run tests with tox
+    runs-on: ubuntu-18.04
+    steps:
+      - uses: actions/checkout@v2
+
+      - name: Run tox
+        uses: docker://python:3.6
+        run: tox -e py36
-- 
GitLab