Skip to content

Merge pull request #47 from opus-codium/drop-invalid-traffic-in-iptables #204

Merge pull request #47 from opus-codium/drop-invalid-traffic-in-iptables

Merge pull request #47 from opus-codium/drop-invalid-traffic-in-iptables #204

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: true
- name: Run static code analysis
run: bundle exec rubocop
unit:
runs-on: ubuntu-latest
needs: rubocop
strategy:
matrix:
ruby:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v6
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Generate the parser
run: bundle exec rake gen_parser
- name: Run tests without uploading code coverage
run: bundle exec rake