remove downstream CI

This commit is contained in:
Balazs Komuves 2026-01-15 19:38:16 +01:00
parent 094d8b881d
commit f7a4549d86
No known key found for this signature in database
GPG Key ID: F63B7AEF18435562

View File

@ -1,24 +0,0 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
nim: [2.2.6]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Install Nim
uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{ matrix.nim }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: nimble install -d -y
- name: Test
run: nimble test -y
- name: Build binary
run: nimble build -y