Skip to content

Create FUNDING.yml

Create FUNDING.yml #14

Workflow file for this run

name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: macos-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Install maui
run: dotnet workload install maui
- name: Run the Cake script
uses: cake-build/cake-action@v1
with:
target: Build
cake-version: 1.3.0