Compare commits

...

4 Commits

Author SHA1 Message Date
889db9fbbf format
All checks were successful
Run tests / test (push) Successful in 55s
2025-09-04 20:57:23 +02:00
81ef26ee6c chore: add CHANGELOG.md file 2025-09-04 20:57:16 +02:00
3999922cc8 chore: add scripts folder 2025-09-04 20:57:02 +02:00
c6779be96a chore: update test workflow 2025-09-04 20:56:48 +02:00
4 changed files with 17 additions and 10 deletions

View File

@@ -3,12 +3,14 @@ on:
push:
jobs:
test-project:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v5
- name: Setup nim
uses: jiro4989/setup-nim-action@v2
- name: Run tests
run: nimble test

6
CHANGELOG.md Normal file
View File

@@ -0,0 +1,6 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

View File

@@ -1,14 +1,13 @@
# Package
version = "0.1.0"
author = "pro"
description = "my nim project"
license = "MIT"
bin = @["main"]
srcDir = "src"
binDir = "bin"
installExt = @["nim"]
version = "0.1.0"
author = "pro"
description = "my nim project"
license = "MIT"
bin = @["main"]
srcDir = "src"
binDir = "bin"
installExt = @["nim"]
# Dependencies

0
scripts/.gitkeep Normal file
View File