This commit is contained in:
Jacek Sieka 2025-12-11 10:01:09 +01:00
parent 4fa5c57ecc
commit 803a1bee3e
No known key found for this signature in database
GPG Key ID: A1B09461ABB656B8

View File

@ -7,15 +7,15 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
nim: [2.0.14] nim: [2.0.14, stable]
os: [ubuntu-latest, macOS-latest, windows-latest] os: [ubuntu-latest, macOS-latest, windows-latest]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install Nim - uses: jiro4989/setup-nim-action@v2
uses: iffy/install-nim@v5
with: with:
version: ${{ matrix.nim }} nim-version: ${{matrix.nim}}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build - name: Build
run: nimble install -y run: nimble install -y
- name: Test - name: Test