Skip to content

Moved extraction functions to new PackUtil class #6

Moved extraction functions to new PackUtil class

Moved extraction functions to new PackUtil class #6

Workflow file for this run

name: .NET
on:
push:
branches: [main, master, "releases/**"]
pull_request:
branches: [main, master, "releases/**"]
jobs:
build:
timeout-minutes: 15
continue-on-error: true
runs-on: ${{ matrix.platforms }}
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
strategy:
matrix:
dotnet: ["6.0.x"]
platforms: ["ubuntu-latest", "windows-latest", "macos-latest"]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
# dotnet-quality: 'preview'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
# test:
# timeout-minutes: 15
# continue-on-error: true
# runs-on: "ubuntu-latest"
# env:
# NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
# strategy:
# matrix:
# dotnet: ["8.0.x"]
# steps:
# - uses: actions/checkout@v2
# - name: Setup .NET
# uses: actions/setup-dotnet@v3
# with:
# dotnet-version: ${{ matrix.dotnet }}
# dotnet-quality: 'preview'
# - name: Install dependencies
# run: dotnet restore
# - name: Test
# run: dotnet test --no-restore