Skip to content

Commit

Permalink
Merge pull request #155 from convertersystems/nullable-reference-types
Browse files Browse the repository at this point in the history
Nullable reference types
  • Loading branch information
awcullen authored Jun 21, 2020
2 parents 83310e8 + 5f090af commit e68429a
Show file tree
Hide file tree
Showing 49 changed files with 2,420 additions and 1,435 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
- name: Setup .NET Core 2.2
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.2.108
dotnet-version: '2.2.108'
- name: Setup .NET Core 3.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.0.100'
- name: Workaround see https://github.com/actions/setup-dotnet/issues/25#issuecomment-557570168
run: rsync -a ${DOTNET_ROOT/3.0.100/2.2.108}/* $DOTNET_ROOT/
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Run unit tests
Expand Down
Loading

0 comments on commit e68429a

Please sign in to comment.