Add GitHub action
This commit is contained in:
parent
59108cc615
commit
8a5f4e170d
1 changed files with 18 additions and 0 deletions
18
.github/workflows/tests.yml
vendored
Normal file
18
.github/workflows/tests.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: isinetaddr
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tests:
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- run: make test
|
Loading…
Reference in a new issue