Skip to content

Treat XLS BOOLERR cells as non-empty (#754) #37

Treat XLS BOOLERR cells as non-empty (#754)

Treat XLS BOOLERR cells as non-empty (#754) #37

Workflow file for this run

name: CI
on:
push:
branches: ['develop']
tags-ignore: ['**']
pull_request:
permissions: {}
jobs:
build:
runs-on: windows-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.x'
- name: Restore
run: dotnet restore --locked-mode
- name: Build
run: dotnet build ExcelDataReader.slnx --no-restore -c Release /p:TreatWarningsAsErrors=true
- name: Test
run: dotnet test src/ExcelDataReader.Tests/ExcelDataReader.Tests.csproj --no-build -c Release