Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Konboi committed Aug 7, 2024
1 parent 129d5d6 commit 201eea5
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/record-build-and-test-results-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: record-build-and-test-results-action
on:
push:
branches:
- main
- github-test-result-action # for debug
paths:
- "launchable-test-result//**"
- ".github/workflows/record-build-and-test-results-action.yml" # for debug

pull_request:
branches:
- main
- github-test-result-action # for debug
paths:
- "launchable-test-result//**"
- ".github/workflows/record-build-and-test-results-action.yml" # for debug

env:
LAUNCHABLE_TOKEN: ${{ secrets.LAUNCHABLE_TOKEN_PYTEST }}
LAUNCHABLE_DEBUG: 1
LAUNCHABLE_REPORT_ERROR: 1

jobs:
tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: launchable-test-result
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Record build and test results action
uses: launchableinc/record-build-and-test-results-action@v1
with:
report_path: .
test_runner: pytest
if: always()
env:
LAUNCHABLE_TOKEN: ${{ secrets.LAUNCHABLE_TOKEN_PYTEST }}


0 comments on commit 201eea5

Please sign in to comment.