mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-06-02 09:37:38 +00:00
23 lines
471 B
YAML
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
|