Skip to content

Refactor generate_huffman_table task #3

Refactor generate_huffman_table task

Refactor generate_huffman_table task #3

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3,
jruby-9.2, jruby-9.3, jruby-9.4]
steps:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: actions/checkout@v4
- name: Install gems
run: bundle install
- name: Tests
run: ENV=CI bundle exec rake spec