Skip to content

scriptcomp: add underscore character as valid separator for integer, … #152

scriptcomp: add underscore character as valid separator for integer, …

scriptcomp: add underscore character as valid separator for integer, … #152

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
# - windows-latest
# - macOS-latest
nim-version:
- 2.0.x
- 2.2.x
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache choosenim
id: cache-choosenim
uses: actions/cache@v3
with:
path: ~/.choosenim
key: ${{ runner.os }}-choosenim-${{ matrix.nim-version}}
- name: Cache nimble
id: cache-nimble
uses: actions/cache@v3
with:
path: ~/.nimble
key: ${{ runner.os }}-nimble-${{ matrix.nim-version}}-${{ hashFiles('neverwinter.nimble') }}
restore-keys: |
${{ runner.os }}-nimble-${{ matrix.nim-version}}-
- name: Setup nim
uses: jiro4989/setup-nim-action@f6b28cfdfcbc9c2364429bd585ad5f850ea64498
with:
nim-version: ${{ matrix.nim-version }}
- name: Install Packages
run: nimble install -y --depsOnly
- name: Setup nimble search path
run: nimble setup
- name: Tests
run: nimble test