Skip to content

Use criterion for benchmarks #9

Use criterion for benchmarks

Use criterion for benchmarks #9

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- "*.md"
- ".gitignore"
- "LICENSE"
push:
branches:
- "main"
paths-ignore:
- "*.md"
- ".gitignore"
- "LICENSE"
jobs:
test:
name: Run `nimble test`
strategy:
matrix:
nim:
- "2.0.2"
- "stable"
- "devel"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Nim
uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim }}
- name: Run test
run: nimble test -Y