Skip to content

Bump the dev-dependencies group across 1 directory with 3 updates #55

Bump the dev-dependencies group across 1 directory with 3 updates

Bump the dev-dependencies group across 1 directory with 3 updates #55

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build-and-test:
name: build-and-test
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: build
run: dotnet build ./src/Dax.Formatter.sln --configuration Release
- name: test
run: dotnet test ./src/Dax.Formatter.Tests/Dax.Formatter.Tests.csproj --configuration Release --no-build --verbosity normal
- name: pack
run: dotnet pack ./src/Dax.Formatter/Dax.Formatter.csproj --configuration Release --no-build