Enum in FromQuery and FromRoute (#99) #145
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: Acheve.TestHost Continous Integration | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
workflow_dispatch: | |
jobs: | |
build: | |
env: | |
BUILD_CONFIG: Release | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: | | |
6.0.421 | |
7.0.408 | |
8.0.204 | |
- name: Build | |
run: dotnet build -c $BUILD_CONFIG | |
- name: Test | |
run: dotnet test -c $BUILD_CONFIG --no-build |