ci: drop azure #995
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: lint and unit tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: [3.0, 3.1, 3.2] | |
runs-on: ubuntu-latest | |
env: | |
UNIT_TEST: true | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install dependencies | |
run: | | |
bundle install | |
- name: Run tests | |
run: | | |
bundle exec rake rubocop | |
bundle exec rake test:unit | |
APPIUM_DRIVER=espresso bundle exec rake test:unit:android | |
APPIUM_DRIVER=appium bundle exec rake test:unit | |
test-win: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: [3.0, 3.1, 3.2] | |
runs-on: windows-latest | |
env: | |
UNIT_TEST: true | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install dependencies | |
run: | | |
gem install ffi | |
bundle install | |
gem uninstall --force eventmachine && gem install eventmachine --platform ruby | |
- name: Run tests | |
run: | | |
bundle exec rake test:unit | |
setx APPIUM_DRIVER espresso | |
bundle exec rake test:unit:android | |
setx APPIUM_DRIVER appium | |
bundle exec rake test:unit |