-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
94 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Build and test | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
|
||
jobs: | ||
build-and-test-linux: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.x.x | ||
- name: make script executable | ||
run: chmod u+x build.sh | ||
- name: Build and test | ||
working-directory: ./ | ||
run: ./build.sh runtests | ||
|
||
build-and-test-windows: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.x.x | ||
- name: Build and test | ||
working-directory: ./ | ||
run: ./build.cmd runtests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
### 0.1.0+2b6617b (Released 2023-7-25) | ||
* Additions: | ||
* [[#2b6617b](https://github.com/CSBiology/FsOboParser/commit/2b6617bb1b8c885a141e80d5718a10dae72ce09e)] Add package metadata | ||
* [[#d7fc8b7](https://github.com/CSBiology/FsOboParser/commit/d7fc8b73e6a184a3ea90c63a42474f570f2ce65c)] Merge pull request #3 from CSBiology/test-testingTheLibrary | ||
* [[#c7cbd18](https://github.com/CSBiology/FsOboParser/commit/c7cbd183aace54370a2c1d8e3b5b198b14b928c4)] Finish Readme (for now) | ||
* [[#5c5caa9](https://github.com/CSBiology/FsOboParser/commit/5c5caa93238f5d5ec49c0ccc9d9e17e4ddb4cfcb)] Add creation function for OBO type def | ||
* [[#e568ff2](https://github.com/CSBiology/FsOboParser/commit/e568ff2dc7949543e2030b8966465f3e676b8909)] Merge pull request #2 from CSBiology/feature-sameName-#1 | ||
* [[#989a736](https://github.com/CSBiology/FsOboParser/commit/989a736b593692a79f2b3bbd1ae5b498e66e8339)] Restructure library | ||
* [[#4553f5c](https://github.com/CSBiology/FsOboParser/commit/4553f5cc693970258f6f2742b5f67c0cc63d7585)] Update Readme with Build tutorial | ||
* [[#fbcc358](https://github.com/CSBiology/FsOboParser/commit/fbcc358b040f49b8f8ab60d50dacd1ecf3cfd471)] add build project | ||
* [[#971aa55](https://github.com/CSBiology/FsOboParser/commit/971aa55eb0a527aa4a6b8b8b24facf057dfc1637)] Add test project | ||
* [[#541fb49](https://github.com/CSBiology/FsOboParser/commit/541fb49b35e34bb9b0eaa1f08f4b2fd625d3bc3d)] Copy and split OboParser into parts | ||
* [[#a2e0ca0](https://github.com/CSBiology/FsOboParser/commit/a2e0ca045c11ff3774c438ee04f4ff4d5935d135)] Initial commit | ||
* Deletions: | ||
* [[#3536b6f](https://github.com/CSBiology/FsOboParser/commit/3536b6ff0f6fb1df884e6be912e2b4fc49bc142e)] Delete test method | ||
* Bugfixes: | ||
* [[#e52af5d](https://github.com/CSBiology/FsOboParser/commit/e52af5d351cad07019beb5c19d1f24858518e7d3)] Fix OBO term creation function | ||
* [[#cb179a7](https://github.com/CSBiology/FsOboParser/commit/cb179a7ac919b4d610c1eb75314af47027fce67a)] Update Readme, fix some typos, test functions | ||
* [[#76bbfe8](https://github.com/CSBiology/FsOboParser/commit/76bbfe89b62108d36da5a86130cfa280b79ad865)] Fix some typos, clarify ///-comments | ||
* [[#79e5a43](https://github.com/CSBiology/FsOboParser/commit/79e5a43fb08dc5bac34581428069e6dffc7b8f70)] Fix critical module bug | ||
|
||
### 0.0.0 (Released 2023-7-25) | ||
* Additions: | ||
* Initial set up for RELEASE_Notes.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@echo off | ||
|
||
dotnet run --project ./build/build.fsproj %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eu | ||
set -o pipefail | ||
|
||
dotnet run --project ./build/build.fsproj "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters