diff --git a/.captain/config.yaml b/.captain/config.yaml index 0c2cd25..50e7bf9 100644 --- a/.captain/config.yaml +++ b/.captain/config.yaml @@ -2,4 +2,6 @@ test-suites: captain-examples-cucumber: command: bundle exec cucumber --format json --out tmp/cucumber.json --format pretty results: + language: Ruby + framework: Cucumber path: tmp/cucumber.json diff --git a/Gemfile.lock b/Gemfile.lock index a11d3c2..ddbdec2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -40,6 +40,7 @@ GEM ffi (~> 1.1) PLATFORMS + arm64-darwin-21 x86_64-darwin-21 x86_64-linux diff --git a/README.md b/README.md index 812c054..5f1f2c9 100644 --- a/README.md +++ b/README.md @@ -26,14 +26,7 @@ See the [full documentation on test suite integration][test-suite-integration]. ```yaml - uses: rwx-research/setup-captain@v1 -- run: | - captain run \ - --suite-id captain-examples-cucumber \ - --test-results tmp/cucumber.json \ - -- \ - bundle exec cucumber \ - --format json --out tmp/cucumber.json \ - --format pretty +- run: captain run captain-examples-cucumber env: RWX_ACCESS_TOKEN: ${{ secrets.RWX_ACCESS_TOKEN }} ```