Skip to content

Merge branch 'main' of https://github.com/Computerwhz/FunnyPlugin #4

Merge branch 'main' of https://github.com/Computerwhz/FunnyPlugin

Merge branch 'main' of https://github.com/Computerwhz/FunnyPlugin #4

Workflow file for this run

name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration ${{ matrix.configuration }}
- uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.configuration }}
path: bin/${{ matrix.configuration }}/net8.0/