Skip to content

Add ID check, since that's important. #33

Add ID check, since that's important.

Add ID check, since that's important. #33

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches:
- '**'
jobs:
test:
strategy:
matrix:
nim-version: [stable]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nim-version }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Dependencies
run: nimble install -Y
- name: Run Tests
run: nimble test