Skip to content

Update build CI to use modern dotnet tooling #317

Update build CI to use modern dotnet tooling

Update build CI to use modern dotnet tooling #317

Workflow file for this run

name: CI-Audit
on:
push:
# This prevents tag pushes from triggering this workflow
branches: ['*']
pull_request:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
ContinuousIntegrationBuild: true
jobs:
audit:
strategy:
fail-fast: false
matrix:
configuration: [debug, release]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration ${{ matrix.configuration }}
- name: Pack
run: dotnet pack --no-restore --no-build --configuration ${{ matrix.configuration }}
- name: Test
run: dotnet test --no-restore --no-build --configuration ${{ matrix.configuration }}