Skip to content

build: update build script #109

build: update build script

build: update build script #109

Workflow file for this run

name: "🏗️ Build Plugin"
on:
push:
branches:
- "**"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
# - name: Test
# run: dotnet test --no-restore --verbosity normal