summaryrefslogtreecommitdiff
path: root/.github/workflows/tests.yml
blob: b7157004ab567d1dc88d3f3c7cb6f601a3f96e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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