Skip to content
Merged
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
16 changes: 11 additions & 5 deletions .github/workflows/unit-test.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
---
name: Unit Tests
name: 'CI: Tests'

on:
push:
pull_request:
workflow_dispatch:
branches:
- '**'
push:
branches:
- 'main'
tags:
- 'v*'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -15,7 +20,8 @@ permissions:
checks: write # For publishing test results

jobs:
run-unit-test:
run-unit-tests:
name: 'Run Unit Tests'
runs-on: macos-14 # macOS M1 runner
timeout-minutes: 10

Expand All @@ -42,7 +48,7 @@ jobs:
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: test-results
name: unit-test-results
path: |
**/build/test-results/**/*.xml
**/build/reports/**
Expand Down