Skip to content

feat!: modify current application #1509

feat!: modify current application

feat!: modify current application #1509

Workflow file for this run

name: "Build Library"
on:
push:
branches:
- main
pull_request:
merge_group:
workflow_dispatch:
env:
DOTNET_NOLOGO: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true
jobs:
build:
timeout-minutes: 15
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Build library
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: |
7.0.306
6.x
- name: Build library
run: dotnet build -c Release -v minimal DisCatSharp.sln
- name: Test library
run: dotnet test -v minimal -c Release --no-restore --no-build DisCatSharp.sln