Skip to content

Build jupyternim, check display.nim #103

Build jupyternim, check display.nim

Build jupyternim, check display.nim #103

Workflow file for this run

name: Build jupyternim, check display.nim
on:
push:
paths:
- 'src/**'
- 'examples/**'
pull_request:
branches:
- master
workflow_dispatch:
schedule:
- cron: '3 2 1 * *'
jobs:
build:
strategy:
matrix:
nim: [ '1.6.0', 'stable', 'devel' ]
os: [ubuntu-latest, windows-latest, macos-latest]
name: Build on nim ${{ matrix.nim }}-${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Cache choosenim
id: cache-choosenim
uses: actions/[email protected]
with:
path: ~/.choosenim
key: ${{ runner.os }}-choosenim-stable
- name: Cache nimble
id: cache-nimble
uses: actions/[email protected]
with:
path: ~/.nimble
key: ${{ runner.os }}-nimble-stable
- name: Setup nim
uses: jiro4989/[email protected]
with:
nim-version: ${{ matrix.nim }}
- run: nimble build -Y
- run: nim check src/jupyternimpkg/display.nim