Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ jobs:
dotnet-version: '8'
- run: npm ci
- run: npm run build-csharp
- run: npm run test-csharp
- run: npm run test-ci-csharp
id: test
- uses: actions/upload-artifact@v7
if: ${{ failure() && steps.test.conclusion == 'failure' }}
with:
with:
name: test-results-csharp
path: |
packages/alphatab/test-data/**/*.new.png
Expand All @@ -80,9 +80,11 @@ jobs:
build_kotlin:
name: Build and Test Kotlin
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- uses: actions/checkout@v6
with:
with:
fetch-depth: 100
- uses: actions/setup-node@v6
with:
Expand All @@ -99,11 +101,17 @@ jobs:
- run: npm run build-kotlin
- run: npm run test-kotlin
id: test
- uses: dorny/test-reporter@v2
if: ${{ always() }}
with:
name: Kotlin Tests
path: 'packages/kotlin/**/build/test-results/**/*.xml'
reporter: java-junit
- uses: actions/upload-artifact@v7
if: ${{ failure() && steps.test.conclusion == 'failure' }}
with:
with:
name: test-results-kotlin
path: |
packages/alphatab/test-data/**/*.new.png
packages/alphatab/test-data/**/*.diff.png
packages/alphatab/test-data/**/*.diff.png
- run: ./packages/kotlin/src/gradlew --stop
Loading
Loading