mirror of
https://github.com/logos-storage/nim-contract-abi.git
synced 2026-01-06 15:43:07 +00:00
* Update for Nim 2.0.x * Update to Nim 2.0.14 * use version range for deps, bump nimcrypto * remove 1.6 from ci test * Update the lock file again * fromBytes -> fromBytesBE --------- Co-authored-by: Eric <5089238+emizzle@users.noreply.github.com>
20 lines
347 B
YAML
20 lines
347 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
nim: [2.0.14, stable]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: iffy/install-nim@v3
|
|
with:
|
|
version: ${{ matrix.nim }}
|
|
- name: Build
|
|
run: nimble install -y
|
|
- name: Test
|
|
run: nimble test -y
|