Skip to content

Update ci.yml

Update ci.yml #70

Workflow file for this run

name: Build for CI
on:
push:
branches: [ "main" ]
paths-ignore:
- "**.md"
pull_request:
branches: [ "main" ]
jobs:
build-plugin-ci:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
7.0.x
8.0.x
- name: Install .NET MAUI
run: dotnet workload install maui
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 11
- name: Restore dependencies
run: dotnet restore ShanedlerSamples.sln
- name: Build
run: dotnet build ShanedlerSamples.sln -c Release