Skip to content

#80 add license page to nimibook (#86) #33

#80 add license page to nimibook (#86)

#80 add license page to nimibook (#86) #33

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
nim:
- '1.6.x'
- 'stable'
- 'devel'
fail-fast: false
name: Nim ${{ matrix.nim }}
steps:
- uses: actions/checkout@v3
- uses: jiro4989/[email protected]
with:
nim-version: ${{ matrix.nim }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble -y install
- run: nimble test
- name: Test generation of nimibook documentation
run: nimble genbook
- name: Test example book
run: nimble test_example
- name: Clean example book
run: nimble clean_example