Bump allure-cucumber from fb490e5
to 3232f6e
#413
Workflow file for this run
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
name: Test | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3' | |
bundler-cache: true | |
- name: Test | |
run: bundle exec cucumber --retry 1 | |
env: | |
ALLURE_TESTPLAN_PATH: features/support/fixture | |
- name: Upload allure-results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: allure-reports | |
path: report/allure-results | |
if-no-files-found: error |