Skip to content

ci: use cake v3.1.0 #16

ci: use cake v3.1.0

ci: use cake v3.1.0 #16

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.x
8.x
- name: List dotnet sdks
run: dotnet --info
- name: Cache tools, ~/.nuget/packages
uses: actions/cache@v2
with:
path: |
tools
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
- name: Run the Cake script
uses: cake-build/cake-action@v1
with:
cake-version: tool-manifest
verbosity: Normal
script-path: build.cake
target: Default