cpp-httplib/.github/workflows/test.yaml
2020-07-30 01:47:54 -04:00

23 lines
471 B
YAML

name: test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
steps:
- name: checkout
uses: actions/checkout@v1
- name: brotli-ubuntu
run: sudo apt-get install -y libbrotli-dev
if: matrix.os == 'ubuntu-latest'
- name: brotli-macOS
run: brew install brotli
if: matrix.os == 'macOS-latest'
- name: make
run: cd test && make