Skip to content

CI_WIN

CI_WIN #55

Workflow file for this run

name: CI_WIN
on:
push:
schedule:
- cron: "0 0 * * 1"
jobs:
build-windows:
runs-on: windows-latest
env:
Solution_name: JsonFlatFileDataStore.sln
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.302
6.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build
- name: Tests
run: dotnet test JsonFlatFileDataStore.Test/JsonFlatFileDataStore.Test.csproj