mirror of
https://github.com/logos-storage/nim-leveldb.git
synced 2026-01-08 08:33:07 +00:00
* Change the LevelDbCmakeFlags option case * Add nimbledeps to ignored files * Increase version * Add Nim 2.0.12 to the matrix * Fixes STD_REGEX issue introduced by gtest/benchmark submodule * Revert "Fixes STD_REGEX issue introduced by gtest/benchmark submodule" This reverts commit b4db94d75300f9d638869279ab736571eda632e6. * Disables building benchmark tests --------- Co-authored-by: Arnaud <arnaud@status.im>
23 lines
453 B
YAML
23 lines
453 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest, windows-latest]
|
|
nim: [stable, 1.6.18, 2.0.12]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- uses: iffy/install-nim@v4
|
|
with:
|
|
version: ${{ matrix.nim }}
|
|
- name: Build
|
|
run: nimble install -y
|
|
- name: Test
|
|
run: nimble test -y
|