Skip to content

.NET 9 RC2 & Package Migration #51

.NET 9 RC2 & Package Migration

.NET 9 RC2 & Package Migration #51

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
workflow_dispatch:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: 🛠️ Build and Test Release 🛠️
runs-on: ubuntu-latest
steps:
- name: 🛠️ Check-out code
uses: actions/checkout@v3
- name: 🛠️ Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.x
- name: 🛠️ Enable Problem Matchers
run: echo "::add-matcher::.github/matchers/dotnet.json"
- name: 🛠️ Restore & Load Dependencies
# Eventually add in cache for packages
run: dotnet restore
- name: 🛠️ Build Release
# Test pipeline as production Release
run: dotnet build --configuration Release --no-restore
- name: 🛠️ Test Release
run: dotnet test --no-build --verbosity normal