Skip to content

Add version 2.2.0 to CI. #2281

Add version 2.2.0 to CI.

Add version 2.2.0 to CI. #2281

Workflow file for this run

name: Github Actions
on: [push, pull_request]
jobs:
build:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
nim-version: ['1.4.x', '2.2.0', '2.0.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim-version }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble test --gc:arc -d:release -y
- run: nimble test --gc:arc -d:release -d:pixieNoSimd -y
- run: nimble test --gc:orc -d:release -y
- run: nim cpp --gc:orc -d:release -r tests/all.nim