Skip to content

Update README.md

Update README.md #4

Workflow file for this run

name: Github Actions
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
nim:
- '1.6.x'
- 'stable'
- 'devel'
runs-on: ${{ matrix.os }}
name: testdiff ${{ matrix.nim }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: jiro4989/setup-nim-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble test -y
- run: nimble test --gc:orc -y