Skip to content

Add semantic release workflow #39

Add semantic release workflow

Add semantic release workflow #39

Workflow file for this run

name: .NET
on:
pull_request:
branches: [ '*' ]
jobs:
build_and_test:
name: Build & test
runs-on: ubuntu-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
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --logger trx
- uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: test-results
path: 'tests/**/*.trx'