Skip to content

Add support for SCTP #89

Add support for SCTP

Add support for SCTP #89

# pulled from repo
name: "Rubocop"
on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
#schedule:
# - cron: '39 15 * * 4'
jobs:
rubocop:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
# Ruby 2.7
ruby-version: 2.7
- name: Set up Bundler
run: |
bundle config path vendor/bundle
bundle config set --local without noci
bundle config set --local with rubocop
# This step is not necessary if you add the gem to your Gemfile
- name: Install Code Scanning integration
run: |
bundle add code-scanning-rubocop --version '= 0.5.0' --source 'https://rubygems.org' --skip-install
- name: Install dependencies
run: |
sudo apt-get update -qq && sudo apt-get install libpcap-dev -qq
bundle install
- name: Rubocop run
run: |
bash -c "
bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif lib/
[[ $? -ne 2 ]]
"
- name: Upload Sarif output
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: rubocop.sarif