mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-09 17:54:13 +08:00
19 lines
433 B
YAML
19 lines
433 B
YAML
|
name: CI
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
#, windows-latest
|
||
|
os: [ubuntu-latest, macos-latest, ubuntu-16.04]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: fetch tags
|
||
|
run: git fetch --unshallow --tags --prune
|
||
|
- name: make check
|
||
|
run: make --keep-going all && MALLOC_CHECK_=7 MALLOC_PERTURB_=42 make --keep-going check
|
||
|
shell: bash
|