Skip to content

Update build.yaml

Update build.yaml #112

Workflow file for this run

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