[ADP-3421] Ruby E2E tests: Skip test with two cosigners (#4766) #371
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: Rubocop | |
on: | |
push: | |
branches: [ "master" ] | |
paths: ['test/e2e/**.rb'] | |
pull_request: | |
branches: [ "master" ] | |
paths: ['test/e2e/**.rb'] | |
permissions: | |
contents: read | |
defaults: | |
run: | |
working-directory: ./test/e2e | |
jobs: | |
rubocop-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout repository | |
uses: actions/[email protected] | |
- name: 💎 Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1.2 | |
bundler-cache: true | |
- name: 👮 Rubocop | |
run: | | |
gem install rubocop | |
rubocop |