Merge pull request #183 from SSchulze1989/feature/small-fixes-improve… #518
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: .NET | |
on: | |
push: | |
branches: [ develop* ] | |
pull_request: | |
branches: [ develop* ] | |
jobs: | |
build: | |
env: | |
BUILD_CONFIG: Debug | |
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
source-url: https://nuget.pkg.github.com/SSchulze1989/index.json | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build -c $BUILD_CONFIG --no-restore | |
- name: Test | |
run: dotnet test -c $BUILD_CONFIG --no-build --verbosity normal |