summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorjwerle <joseph.werle@gmail.com>2022-04-14 14:01:00 -0400
committerjwerle <joseph.werle@gmail.com>2022-04-14 14:01:00 -0400
commit0166010d5119ac69a909ce38ec3f4b2d16cf251c (patch)
treef17729f1c1d797953d3ac33e1922e0c4ddabe83a /.github/workflows
parentbb05729b25ab2f4464eecaf346df878332576fa3 (diff)
chore(.github): add workflows
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000..b715700
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,32 @@
+name: Tests
+
+on: [push, pull_request]
+
+jobs:
+ linux:
+ name: Linux
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: System Setup
+ shell: bash
+ run: |
+ sudo apt install -qq libcurl4-gnutls-dev
+ - name: Run Tests
+ run: |
+ make
+ make test
+
+ macos:
+ name: macOS
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: System Setup
+ shell: bash
+ run: |
+ : # noop
+ - name: Run Tests
+ run: |
+ make
+ make test