Skip to content

Merge branch 'main' of github.com:openpeeps/toktok #56

Merge branch 'main' of github.com:openpeeps/toktok

Merge branch 'main' of github.com:openpeeps/toktok #56

Workflow file for this run

name: test
on:
push:
paths-ignore:
- LICENSE
- README.*
pull_request:
paths-ignore:
- LICENSE
- README.*
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
nim-version:
- 'stable'
steps:
- uses: actions/checkout@v3
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim-version }}
- run: nimble install -Y
- run: nim c -r src/toktok.nim
- run: nimble tests