massa update #66
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Robot Framework - Regressivo | |
on: | |
pull_request: | |
push: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Tests | |
uses: joonvena/robotframework-docker-action@v1.1 | |
with: | |
# browser: chrome | |
robot_tests_dir: Tests | |
- name: Upload Test Report | |
uses: actions/upload-artifact@v4.4.0 | |
if: always() | |
with: | |
name: reports | |
path: reports | |
generate_report: | |
if: always() | |
needs: [ test ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download reports | |
uses: actions/download-artifact@v4 | |
with: | |
name: reports | |
- name: Send report to commit | |
uses: joonvena/robotframework-reporter-action@v2.5 | |
with: | |
gh_access_token: ${{ secrets.GITHUB_TOKEN }} |