Skip to content

Bump the github-actions group with 2 updates #2

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
build-test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET 9
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x
- name: Restore
run: dotnet restore LocalChromeStore.sln
- name: Build
run: dotnet build LocalChromeStore.sln -c Release --no-restore
- name: Test
run: dotnet test LocalChromeStore.sln -c Release --no-build --verbosity normal