Skip to content
This repository was archived by the owner on Aug 2, 2026. It is now read-only.

chore(deps): bump actions/checkout from 6 to 7 (#57) #313

chore(deps): bump actions/checkout from 6 to 7 (#57)

chore(deps): bump actions/checkout from 6 to 7 (#57) #313

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore SysBot.NET.sln
- name: Build
run: dotnet build SysBot.NET.sln -c Release --no-restore
- name: Test
run: dotnet test SysBot.NET.sln -c Release --no-build --verbosity normal