Skip to content

Merge pull request #5 from thiagoluga/pr/abstractions #4

Merge pull request #5 from thiagoluga/pr/abstractions

Merge pull request #5 from thiagoluga/pr/abstractions #4

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
build:
name: build · test · format
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
steps:
- uses: actions/checkout@v4
- name: Setup .NET (8 + 9)
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
9.0.x
- name: Restore
run: dotnet restore NeoReports.sln
- name: Build
run: dotnet build NeoReports.sln --configuration Release --no-restore
- name: Test
run: dotnet test NeoReports.sln --configuration Release --no-build --verbosity normal
- name: Format (verify)
run: dotnet format NeoReports.sln --verify-no-changes --no-restore