Skip to content

Bump brace-expansion in /source/Demo/sense-sprint-web #53

Bump brace-expansion in /source/Demo/sense-sprint-web

Bump brace-expansion in /source/Demo/sense-sprint-web #53

Workflow file for this run

name: Build & Test
on:
push:
paths-ignore: ['**.md', '.github/**']
# don't run on master because we already have another action for that
branches-ignore: [master]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Install dependencies
run: dotnet restore ./source/Lexicala.NET.slnx
- name: Build
run: dotnet build ./source/Lexicala.NET.slnx --configuration Release --no-restore
- name: Test
run: dotnet test ./source/Lexicala.NET.slnx --no-restore --verbosity normal