From 1afa872a17bbe344ce9af2cf84fe3d6ff003db40 Mon Sep 17 00:00:00 2001 From: n-ogawa Date: Sun, 23 Jan 2022 22:46:24 +0900 Subject: [PATCH] Add .NET6 --- .github/workflows/test.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 049d98cb..482f9062 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false matrix: operating-system: [ ubuntu-latest, windows-latest, macOS-latest ] - dotnet-version: [ '3.1', '5.0' ] + dotnet-version: [ '3.1', '5.0', '6.0' ] steps: - uses: actions/checkout@v2 - uses: actions/setup-dotnet@v1 diff --git a/README.md b/README.md index 8ea2eaa7..adb6f020 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: '5.0.x' # or 3.1.x + dotnet-version: '6.0.x' # or 3.1.x, 5.0.x - name: Restore run: dotnet restore - name: Inspect code