changed to utc now #22
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
name: dotnet build & test | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
include: | |
- dotnet-version: ' ' | |
tfm: 'netcoreapp3.1' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
- name: Install dependencies | |
run: dotnet restore -p:TargetFramework=${{ matrix.tfm }} | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test with the dotnet CLI | |
run: dotnet test --verbosity normal -f="${{ matrix.tfm }}" | |