File tree Expand file tree Collapse file tree 4 files changed +44
-3
lines changed Expand file tree Collapse file tree 4 files changed +44
-3
lines changed Original file line number Diff line number Diff line change 1+ name : php-composer-phpunit
2+ on :
3+ push :
4+ branches : [ master ]
5+ pull_request :
6+ branches : [ master ]
7+ workflow_dispatch :
8+ jobs :
9+ test :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v2
13+ - uses : shivammathur/setup-php@v2
14+ with :
15+ php-version : ' 7.0'
16+ - run : API_KEY=${{ secrets.API_KEY }} make ci-env
17+ - run : cd php-composer-phpunit && make test
18+
Original file line number Diff line number Diff line change 1+ name : ruby-rspec
2+ on :
3+ push :
4+ branches : [ master ]
5+ pull_request :
6+ branches : [ master ]
7+ workflow_dispatch :
8+ jobs :
9+ test :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v2
13+ - uses : ruby/setup-ruby@v1
14+ with :
15+ ruby-version : 2.6 # Not needed with a .ruby-version file
16+ bundler-cache : true # runs 'bundle install' and caches installed gems automatically
17+ - run : API_KEY=${{ secrets.API_KEY }} make ci-env
18+ - run : cd ruby-rspec && make test
19+
Original file line number Diff line number Diff line change @@ -43,9 +43,13 @@ See developer page for [more guides and documentation](https://www.mailslurp.com
4343| [ Cypress Mailslurp Plugin Email Test] ( ./javascript-cypress-mailslurp-plugin ) | ![ javascript-cypress-mailslurp] ( https://github.com/mailslurp/examples/actions/workflows/javascript-cypress-mailslurp.yml/badge.svg?branch=master ) |
4444| [ Jest Puppeteer Email Test] ( ./javascript-jest-puppeteer ) | ![ javascript-jest-puppeteer] ( https://github.com/mailslurp/examples/actions/workflows/javascript-jest-puppeteer.yml/badge.svg?branch=master ) |
4545| [ Testcafe Email Test] ( ./javascript-testcafe ) | ![ javascript-testcafe] ( https://github.com/mailslurp/examples/actions/workflows/javascript-testcafe.yml/badge.svg?branch=master ) |
46- | [ Webdriver WDIO Email Test] ( ./javascript-webdriver-io ) | ![ javascript-webdriver-io] ( https://github.com/mailslurp/examples/actions/workflows/javascript-webdriver-io.yml/badge.svg?branch=master ) |
46+ | [ Webdriver WDIO Email Test] ( ./javascript-webdriver-io ) | ![ javascript-webdriver-io] ( https://github.com/mailslurp/examples/actions/workflows/javascript-webdriver-io.yml/badge.svg?branch=master ) |
47+
48+ ### PHP
4749
48-
50+ | Project | Test status |
51+ | --- | --- |
52+ | [ PHP Composer PHPUnit] ( ./php-composer-phpunit ) | ![ php-composer-phpunit] ( https://github.com/mailslurp/examples/actions/workflows/php-composer-phpunit.yml/badge.svg?branch=master ) |
4953
5054## Running locally
5155If you wish to run these examples yourself:
Original file line number Diff line number Diff line change 11source "https://rubygems.org"
22
33gem 'rspec' , '~> 3.8'
4- gem 'mailslurp_client' , '~> 7 .0' , '>= 7 .0.8 '
4+ gem 'mailslurp_client' , '~> 15 .0' , '>= 15 .0.2 '
You can’t perform that action at this time.
0 commit comments