Skip to content

CI on main (.NET 8.0.x on Ubuntu) #10

CI on main (.NET 8.0.x on Ubuntu)

CI on main (.NET 8.0.x on Ubuntu) #10

Workflow file for this run

name: CI on main (.NET 8.0.x on Ubuntu)
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore src/MessageCommunicator.sln
- name: Build
run: dotnet build src/MessageCommunicator.sln --configuration Release-CI --no-restore --no-incremental --framework net8.0
- name: Test
run: dotnet test src/MessageCommunicator.sln --configuration Release-CI --no-restore --framework net8.0 --verbosity normal