[ADP-3478] Remove get_latest_node_db_url
#372
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: 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/checkout@v3.2.0 | |
- 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 |