mirror of
https://github.com/codex-storage/nim-stew-versioned.git
synced 2025-01-22 04:19:41 +00:00
v1.0.0
Points to nim-stew#a6e198132097fb544d04959aeb3b839e1408f942
This commit is contained in:
commit
ce101c0cac
38
.github/workflows/ci.yml
vendored
Normal file
38
.github/workflows/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
|
10
stew_versioned.nimble
Normal file
10
stew_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 = "Backports, standard library candidates and small utilities that don't yet deserve their own repository"
|
||||
license = "MIT"
|
||||
|
||||
requires "nim >= 1.6.0"
|
||||
requires "stew#a6e198132097fb544d04959aeb3b839e1408f942"
|
Loading…
x
Reference in New Issue
Block a user