support entity type filtration for the entities not included into sets #6
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: Publish | |
run: dotnet publish --configuration Release EDMXTrimmer --output zip | |
- name: Upload EDMXTrimmer.zip | |
uses: actions/upload-artifact@v3 | |
with: | |
name: EDMXTrimmer | |
path: zip |