-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from babysnakes/project-udpates
Project Updates
- Loading branch information
Showing
42 changed files
with
935 additions
and
953 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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[*.fs] | ||
[*.{fs,fsx}] | ||
fsharp_max_value_binding_width = 80 | ||
fsharp_max_infix_operator_expression = 70 | ||
fsharp_max_if_then_short_width = 50 | ||
|
||
[*.md] | ||
max_line_length = 100 |
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 |
---|---|---|
|
@@ -12,19 +12,21 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up .NET | ||
uses: xt0rted/[email protected] | ||
- name: Install dependencies | ||
run: | | ||
dotnet tool restore | ||
dotnet paket restore | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: '6.0.x' | ||
- name: Set up dependency caching for faster builds | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.nuget/packages | ||
key: ${{ runner.os }}-paket-${{ hashFiles('**/paket.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-paket- | ||
- name: Install dependencies | ||
run: | | ||
dotnet tool restore | ||
dotnet paket restore | ||
- name: Test code | ||
run: dotnet fake build -t Check | ||
run: ./build.sh -t Check | ||
- name: Create release draft | ||
run: dotnet fake build -t Release | ||
run: ./build.sh -t Release |
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 |
---|---|---|
|
@@ -12,17 +12,19 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up .NET | ||
uses: xt0rted/[email protected] | ||
- name: Install dependencies | ||
run: | | ||
dotnet tool restore | ||
dotnet paket restore | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: '6.0.x' | ||
- name: Set up dependency caching for faster builds | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.nuget/packages | ||
key: ${{ runner.os }}-paket-${{ hashFiles('**/paket.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-paket- | ||
- name: Install dependencies | ||
run: | | ||
dotnet tool restore | ||
dotnet paket restore | ||
- name: Run code checks | ||
run: dotnet fake build -t Check | ||
run: ./build.sh -t Check |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 @@ | ||
@echo off | ||
echo Restoring dotnet tools... | ||
dotnet tool restore | ||
dotnet paket restore | ||
|
||
dotnet run --project ./build/build.fsproj -- %* |
Oops, something went wrong.