Skip to content

Commit

Permalink
github/workflows: add test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Sep 25, 2022
1 parent 18bf121 commit 824dc53
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,27 @@
name: test
on:
push:
branches:
- master
pull_request:
branches:
- '*'

jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Prerequisites
if: runner.os == 'macOs'
run: brew install gawk
- name: Build
run: make
- name: Test
run: make check

0 comments on commit 824dc53

Please sign in to comment.