Skip to content

Bump the minor-and-patch group with 1 update #19

Bump the minor-and-patch group with 1 update

Bump the minor-and-patch group with 1 update #19

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Cache NuGet packages
uses: actions/cache@v4
with:
path: ~\.nuget\packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Restore
run: dotnet restore WindowsEdgeLight.sln
- name: Build
run: dotnet build WindowsEdgeLight.sln --configuration Release --no-restore
- name: Test
run: dotnet test WindowsEdgeLight.sln --configuration Release --no-build