mirror of
https://github.com/logos-storage/logos-storage-nim-dht.git
synced 2026-05-18 23:59:27 +00:00
* Update to 2.2.8 * Reduce chronicles requirement version * Restore Nim 2.2.4 in nimble * Update ci * Update ci version * Try to remove windows * Restore previous action * Try to upgrade nimble version * Try to fix dependencies issue * Try to downgrade nimble * Try 0.20.0 * Add nimble lock * Remove nimble custom install * Trying something * Fix syntax * debug * Restore dependencies version and update chronos upper bound version * Remove debug statements * Remove debug statements * Remove debug statements * Update codexdht/private/eth/p2p/discoveryv5/providers/maintenance.nim Co-authored-by: Eric <5089238+emizzle@users.noreply.github.com> * Update codexdht/private/eth/p2p/discoveryv5/providers/maintenance.nim Co-authored-by: Eric <5089238+emizzle@users.noreply.github.com> * Refactor to use questionable * Revert unneeded changes * Remove spaces --------- Co-authored-by: Eric <5089238+emizzle@users.noreply.github.com>
23 lines
499 B
YAML
23 lines
499 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
nim: [2.2.8]
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- uses: jiro4989/setup-nim-action@v2
|
|
with:
|
|
nim-version: ${{matrix.nim}}
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build
|
|
run: nimble install -y
|
|
- name: Test
|
|
run: nimble test -y
|