Dmitriy Ryajov 558e51a78e
fix ci
2024-01-19 17:37:41 -06:00

31 lines
536 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
nim: [stable, 1.6.16, 1.4.8, 1.2.18]
toolchain:
- stable
# - beta
# - nightly
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Install Nim
uses: asdf-vm/actions/install@v3
with:
tool_versions: |
nim ${{ matrix.nim }}
- name: Build
run: nimble install -y
- name: Test
run: nimble test -y