Skip to content

Use refc until orc works better #120

Use refc until orc works better

Use refc until orc works better #120

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
timeout-minutes: 40
runs-on: ubuntu-latest
strategy:
matrix:
nim: ['1.6.0', 'stable', 'devel' ]
fail-fast: false
max-parallel: 1
name: Nim ${{ matrix.nim }}
steps:
- name: Cache choosenim
id: cache-choosenim
uses: actions/cache@v1
with:
path: ~/.nimble
key: ${{ runner.os }}-nimble-${{ matrix.nim }}-${{ hashFiles('dimscmd.nimble') }}
- name: Setup Nim Enviroment
uses: actions/checkout@master
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim }}
- name: Update nimble
run: nimble update
- name: Run Tests
env:
DISCORDTOKEN: ${{ secrets.DISCORDTOKEN }}
run: nimble --deepcopy:on test
- name: Check doc examples
run: nimble doc --deepcopy:on --threads:off --project src/dimscmd.nim