Jacek Sieka a15660f70f
chore: fix import conflict
There's a new byteutils in newer versions of stew - also, remove
upraises and disable windows testing which requires SSL library install
2025-12-10 22:06:29 +01:00

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