Skip to content

Bump net-imap from 0.5.1 to 0.5.6 #93

Bump net-imap from 0.5.1 to 0.5.6

Bump net-imap from 0.5.1 to 0.5.6 #93

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- dev
pull_request:
branches:
- "*"
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Linting:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler-cache: true
- name: Run Install
run: |
bundle install
- name: Run Linter (rubocop)
run: |
bundle exec rubocop --parallel --fail-level warning --display-only-fail-level-offenses --format json -o report.json
- name: Brakeman
run: bundle exec brakeman --force