From 8d770b76d24ae03750a576c626e15dd5fcd04cc5 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Wed, 27 Nov 2024 18:56:00 +1100 Subject: [PATCH] version 1.0.0 Points to nim-eth#c482b4c5b658a77cc96b49d4a397aa6d98472ac7 --- .github/ci.yml | 38 ++++++++++++++++++++++++++++++++++++++ .gitignore | 1 + eth_versioned.nimble | 10 ++++++++++ 3 files changed, 49 insertions(+) create mode 100644 .github/ci.yml create mode 100644 .gitignore create mode 100644 eth_versioned.nimble diff --git a/.github/ci.yml b/.github/ci.yml new file mode 100644 index 0000000..d357986 --- /dev/null +++ b/.github/ci.yml @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f663b98 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.nimble diff --git a/eth_versioned.nimble b/eth_versioned.nimble new file mode 100644 index 0000000..5a904f4 --- /dev/null +++ b/eth_versioned.nimble @@ -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"