⬆️ Update target frameworks to net8.0 #13
Workflow file for this run
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
# Build the C# project when receiving a pull request | |
name: Build for pull request | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: dotnet build --configuration Release EDMXTrimmer | |
- name: Test | |
run: dotnet test --logger:nunit --configuration Release EDMXTrimmer | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action/composite@v2 | |
with: | |
files: '**/TestResults/*.xml' | |
comment_mode: 'off' | |
- name: Publish | |
run: dotnet publish --configuration Release EDMXTrimmer/EDMXTrimmer --output zip | |
- name: Upload EDMXTrimmer.zip | |
uses: actions/upload-artifact@v3 | |
with: | |
name: EDMXTrimmer | |
path: zip |