Skip to content

Moved username cleaning out of k8s. #8783

Moved username cleaning out of k8s.

Moved username cleaning out of k8s. #8783

name: 🤖 Robot Framework Tests
# Controls when the workflow will run
on:
pull_request:
# schedule:
# # * is a special character in YAML so you have to quote this string
# - cron: '* */2 * * *'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Execute tests
uses: joonvena/[email protected]
with:
robot_tests_dir: 'Testing/RobotFramework'
robot_reports_dir: 'Testing/RobotFramework/Results'
- name: Upload test results
uses: actions/upload-artifact@v1
if: always()
with:
name: results
path: Testing/RobotFramework/Results
generate_report:
if: always()
needs: [test]
runs-on: ubuntu-latest
steps:
- name: Download reports
uses: actions/download-artifact@v1
with:
name: results
path: Testing/RobotFramework/Results
- name: Send report to commit
uses: joonvena/[email protected]
with:
gh_access_token: ${{ secrets.GITHUB_TOKEN }}
report_path: Testing/RobotFramework/Results