Ben 2496c68149
Revert "speed up ci by using binary"
This reverts commit 6b9e1a651b0ebecc4ad38f54f046e263a9fd8e56.
2024-05-13 11:45:29 +02:00

23 lines
445 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]
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