Skip to content

create dotnet tool 6pack #139

create dotnet tool 6pack

create dotnet tool 6pack #139

Workflow file for this run

name: .NET
on:
push:
branches:
- 'main'
- 'pr/**'
paths:
- '**.cs'
- '**.csproj'
- '**.sln'
pull_request:
branches:
- 'pr/**'
paths:
- '**.cs'
- '**.csproj'
- '**.sln'
jobs:
build-and-test:
name: test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
dotnet-version: [ '8.x' ]
os: [ windows-latest, ubuntu-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --verbosity normal