Skip to content

Merge branch 'dev' of github.com:cgcel/NanoRabbit into dev #233

Merge branch 'dev' of github.com:cgcel/NanoRabbit into dev

Merge branch 'dev' of github.com:cgcel/NanoRabbit into dev #233

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: build
on: [push]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
target-framework: [ 'net6.0', 'net7.0', 'net8.0']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build ${{ matrix.target-framework }}
run: dotnet build --framework ${{ matrix.target-framework }}
# - name: Test with the dotnet CLI ${{ matrix.target-framework }}
# run: dotnet test --framework ${{ matrix.target-framework }}