Skip to content

Update connections.nim #67

Update connections.nim

Update connections.nim #67

Workflow file for this run

on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
nim:
- '2.0.x'
- 'stable'
- devel
os:
- ubuntu-latest
name: '${{ matrix.nim }} (${{ matrix.os }})'
steps:
- uses: actions/checkout@v4
- name: Setup nim
uses: jiro4989/setup-nim-action@v2
with:
use-nightlies: true
nim-version: ${{ matrix.nim }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble install -y
- run: nimble test
- run: nimble test --gc:arc
- run: nimble buildexamples
- run: nimble gendoc