blob: 8a1c1de6dba58d50e2087507ad7c4bebcef0f34a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
name: build-test
on: [push]
jobs:
test:
name: Build & Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: build-test
run: make test
|