Implemented support for recursive data models (avoiding StackOverflowException) #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
test: | |
name: Tests for framework ${{ matrix.framework }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
framework: ['net7.0', 'net8.0'] | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
7.0.x | |
8.0.x | |
- name: Smoke test | |
run: | | |
dotnet run --configuration Release --framework ${{ matrix.framework }} --project src/openapi2excel.cli --file src/openapi2excel.tests/Sample/Sample1.yaml --out Sample.xlsx | |
- name: Tests | |
run: dotnet test --configuration Release --framework ${{ matrix.framework }} |