mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-11 13:44:02 +00:00
18 lines
263 B
YAML
18 lines
263 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: make
|
|
run: cd test && make
|