Merge pull request #31 from koculu/30-bug-the-types-of-sub-namespaces… #158
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: Build and Test | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- '*.md' | |
pull_request: | |
branches: [ "main" ] | |
paths-ignore: | |
- '*.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
7.0.x | |
6.0.x | |
- name: Display dotnet version | |
run: dotnet --version | |
- name: Restore dependencies | |
working-directory: ./src | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
working-directory: ./src | |
- name: Test | |
run: dotnet test --no-build --configuration Release --verbosity normal | |
working-directory: ./src |