-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lots of build tooling updates, added Marvin
- Loading branch information
1 parent
0fafd31
commit 72c435a
Showing
19 changed files
with
439 additions
and
615 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
github: daveaglick |
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,38 @@ | ||
name: Build | ||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest, ubuntu-latest, macos-latest] | ||
env: | ||
# https://github.com/NuGet/Home/issues/11548 | ||
# https://twitter.com/xoofx/status/1488617114940452872?s=20&t=BKSN4j9rP6fOyg8l7aW0eg | ||
NUGET_CERT_REVOCATION_MODE: offline | ||
steps: | ||
- name: Get Source | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Install .NET Core SDK | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: | | ||
3.1.x | ||
6.0.x | ||
- name: Build and Test | ||
run: dotnet test --logger "trx;LogFileName=test-results.trx" | ||
- name: Upload Test Results | ||
uses: actions/upload-artifact@v2 | ||
if: success() || failure() | ||
with: | ||
name: test-results-${{ matrix.os }} | ||
path: '**/test-results.trx' |
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,21 @@ | ||
name: 'Test Report' | ||
on: | ||
workflow_run: | ||
workflows: [ 'Build' ] | ||
types: | ||
- completed | ||
jobs: | ||
report: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest, ubuntu-latest, macos-latest] | ||
steps: | ||
- name: Process Test Results | ||
uses: dorny/test-reporter@v1 | ||
with: | ||
artifact: test-results-${{ matrix.os }} | ||
name: 'Test Results (${{ matrix.os }})' | ||
path: '**/*.trx' | ||
reporter: dotnet-trx |
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 |
---|---|---|
|
@@ -296,3 +296,6 @@ docs/config.wyam.dll | |
*.ncrunchsolution | ||
|
||
*.ncrunchproject | ||
|
||
cache/ | ||
marvin/ |
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 @@ | ||
[submodule "marvin"] | ||
path = marvin | ||
url = https://github.com/daveaglick/Marvin.git |
Oops, something went wrong.