feat: Reject DateTimes in deserialization that have no explicit offse… #92
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
# ensures that the solution can be built in release mode | |
name: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9 | |
- name: restore | |
run: dotnet workload restore | |
working-directory: "MaLoIdentModels" | |
- name: Build/Check for compile errors (dotnet build) | |
run: dotnet build --configuration Release | |
working-directory: "MaLoIdentModels" |