mirror of
https://github.com/logos-storage/nim-eth-versioned.git
synced 2026-01-05 23:23:07 +00:00
version 1.0.0
Points to nim-eth#c482b4c5b658a77cc96b49d4a397aa6d98472ac7
This commit is contained in:
commit
8d770b76d2
38
.github/ci.yml
vendored
Normal file
38
.github/ci.yml
vendored
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 30
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
nim: [1.6.20, stable]
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Nim
|
||||||
|
uses: iffy/install-nim@v4
|
||||||
|
with:
|
||||||
|
version: ${{ matrix.nim }}
|
||||||
|
|
||||||
|
- name: Nimble check
|
||||||
|
run: nimble check
|
||||||
|
|
||||||
|
- name: Nimble install
|
||||||
|
run: nimble install -y
|
||||||
|
|
||||||
|
status:
|
||||||
|
if: always()
|
||||||
|
needs: [check]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped') }}
|
||||||
|
run: exit 1
|
||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.nimble
|
||||||
10
eth_versioned.nimble
Normal file
10
eth_versioned.nimble
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# corresponds to what the dependent package version SHOULD BE, following the
|
||||||
|
# [semver spec](http://semver.org/) [with initial release at
|
||||||
|
# 1.0.0](https://docs.npmjs.com/about-semantic-versioning#incrementing-semantic-versions-in-published-packages).
|
||||||
|
version = "1.0.0"
|
||||||
|
author = "Status Research & Development GmbH"
|
||||||
|
description = "Ethereum Common library"
|
||||||
|
license = "MIT"
|
||||||
|
|
||||||
|
requires "nim >= 1.6.0"
|
||||||
|
requires "eth#c482b4c5b658a77cc96b49d4a397aa6d98472ac7"
|
||||||
Loading…
x
Reference in New Issue
Block a user