Merge pull request #15 from Ali-YousefiTelori/develop #33
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: MacOS (dotnet build and test) | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
os-tests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
7.0.x | |
- name: Restore dependencies | |
run: dotnet restore ./src/CSharp/EasyMicroservices.CustomerMicroservice.sln | |
- name: Build | |
run: dotnet build ./src/CSharp/EasyMicroservices.CustomerMicroservice.sln --no-restore | |
- name: Test | |
run: | | |
dotnet test ./src/CSharp/EasyMicroservices.CustomerMicroservice.sln --no-build --verbosity normal -f net7.0 |