Skip to content

Bump actions/checkout from 2 to 5 #218

Bump actions/checkout from 2 to 5

Bump actions/checkout from 2 to 5 #218

Workflow file for this run

name: Github Actions
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
nim-version: ['1.4.0', '1.4.x', '1.6.x', '2.0.x', '2.2.x', 'stable']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{ matrix.nim-version }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble test -y
- run: nimble test --gc:orc -y
- run: nim js -r tests/all.nim
- run: nim cpp -d:release --gc:arc -r tests/all.nim