mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-02 13:33:10 +00:00
Project setup
This commit is contained in:
parent
29bb6828ee
commit
bd29797aba
5
.editorconfig
Normal file
5
.editorconfig
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
insert_final_newline = true
|
||||||
|
indent_size = 2
|
||||||
|
trim_trailing_whitespace = true
|
||||||
15
.github/workflows/test.yml
vendored
Normal file
15
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macOS-latest, windows-latest]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: iffy/install-nim@v3
|
||||||
|
- name: Test
|
||||||
|
run: nimble test -y
|
||||||
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
*
|
||||||
|
!*/
|
||||||
|
!*.*
|
||||||
1
.tool-versions
Normal file
1
.tool-versions
Normal file
@ -0,0 +1 @@
|
|||||||
|
nim 1.4.2
|
||||||
0
dagger.nim
Normal file
0
dagger.nim
Normal file
4
dagger.nimble
Normal file
4
dagger.nimble
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
version = "0.1.0"
|
||||||
|
author = "Dagger Team"
|
||||||
|
description = "Dagger Storage Network"
|
||||||
|
license = "MIT"
|
||||||
6
tests/testDagger.nim
Normal file
6
tests/testDagger.nim
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import unittest
|
||||||
|
|
||||||
|
suite "example":
|
||||||
|
|
||||||
|
test "unit testing works":
|
||||||
|
check 2 == 2
|
||||||
Loading…
x
Reference in New Issue
Block a user