Last active
April 17, 2020 11:13
-
-
Save joonvena/7a104a28eb0cc055d2b665da5ee0162d to your computer and use it in GitHub Desktop.
This file contains 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
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Execute tests | |
uses: joonvena/[email protected] | |
env: | |
BROWSER: chrome | |
ROBOT_TESTS_DIR: ${{ github.workspace }}/robot_tests | |
ROBOT_REPORTS_DIR: ${{ github.workspace }}/reports | |
- name: Upload test results | |
uses: actions/upload-artifact@v1 | |
if: always() | |
with: | |
name: reports | |
path: ${{ github.workspace }}/reports |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment