mirror of
https://github.com/logos-storage/nim-nitro.git
synced 2026-01-04 22:53:06 +00:00
There's a new byteutils in newer versions of stew - also, remove upraises and disable windows testing which requires SSL library install
21 lines
418 B
YAML
21 lines
418 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest]
|
|
nim: [stable, 2.0.14]
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: iffy/install-nim@v5
|
|
with:
|
|
version: ${{ matrix.nim }}
|
|
- name: Build
|
|
run: nimble install -y --maximumtaggedversions=2
|
|
- name: Test
|
|
run: nimble test -y
|