mirror of
https://github.com/wg/wrk
synced 2025-02-09 03:22:52 +08:00
18 lines
273 B
YAML
18 lines
273 B
YAML
|
name: build
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ${{ matrix.builder }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
builder: [macos-latest, ubuntu-latest]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- name: build
|
||
|
run: make
|