Ben Bierens bd9b8394a7
Update to nim 2 x (#3)
* 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>
2025-02-11 12:06:00 +01:00

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