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
8 changes: 5 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: .NET Tests

on:
schedule:
- cron: "0 6 * * *" # Run daily at 6:00 AM UTC
push:
branches: [main]
pull_request:
Expand Down Expand Up @@ -53,7 +55,7 @@ jobs:
gaffer_upload_token: ${{ secrets.GAFFER_UPLOAD_TOKEN }}
report_path: dotnet-examples/reports/xunit-results.trx
commit_sha: ${{ github.event.pull_request.head.sha || github.sha }}
branch: ${{ github.ref_name }}
branch: ${{ github.head_ref || github.ref_name }}
test_framework: dotnet
test_suite: xunit

Expand All @@ -65,7 +67,7 @@ jobs:
gaffer_upload_token: ${{ secrets.GAFFER_UPLOAD_TOKEN }}
report_path: dotnet-examples/reports/nunit-results.trx
commit_sha: ${{ github.event.pull_request.head.sha || github.sha }}
branch: ${{ github.ref_name }}
branch: ${{ github.head_ref || github.ref_name }}
test_framework: dotnet
test_suite: nunit

Expand All @@ -77,7 +79,7 @@ jobs:
gaffer_upload_token: ${{ secrets.GAFFER_UPLOAD_TOKEN }}
report_path: dotnet-examples/reports/mstest-results.trx
commit_sha: ${{ github.event.pull_request.head.sha || github.sha }}
branch: ${{ github.ref_name }}
branch: ${{ github.head_ref || github.ref_name }}
test_framework: dotnet
test_suite: mstest

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/jest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Jest Tests

on:
schedule:
- cron: '0 6 * * *' # Run daily at 6:00 AM UTC
push:
branches: [main]
pull_request:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: pytest Tests

on:
schedule:
- cron: '0 6 * * *' # Run daily at 6:00 AM UTC
push:
branches: [main]
pull_request:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Ruby RSpec Tests

on:
schedule:
- cron: '0 6 * * *' # Run daily at 6:00 AM UTC
push:
branches: [main]
pull_request:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/vitest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Vitest Tests

on:
schedule:
- cron: '0 6 * * *' # Run daily at 6:00 AM UTC
push:
branches: [main]
pull_request:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Gaffer Examples

[![Tests](https://img.shields.io/endpoint?url=https%3A%2F%2Fapp.gaffer.sh%2Fapi%2Fbadges%2F2f40f258-daad-4e82-89f0-8c673237594d%2Fhealth.json&style=flat)](https://app.gaffer.sh/projects/2f40f258-daad-4e82-89f0-8c673237594d)
[![Coverage](https://img.shields.io/endpoint?url=https%3A%2F%2Fapp.gaffer.sh%2Fapi%2Fbadges%2F2f40f258-daad-4e82-89f0-8c673237594d%2Fcoverage.json&style=flat)](https://app.gaffer.sh/projects/2f40f258-daad-4e82-89f0-8c673237594d)
[![Flaky](https://img.shields.io/endpoint?url=https%3A%2F%2Fapp.gaffer.sh%2Fapi%2Fbadges%2F2f40f258-daad-4e82-89f0-8c673237594d%2Fflaky.json&style=flat)](https://app.gaffer.sh/projects/2f40f258-daad-4e82-89f0-8c673237594d)

Example test projects demonstrating [Gaffer](https://gaffer.sh) integration for various test frameworks.

Parser Check: December 25 2025 - 1:10PM - Merry Christmas
Expand Down
Loading