record the byte size output of the various digest algos #63
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: Tests | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- 'lib/**' | |
- 'test/**' | |
- '.github/**' | |
- 'Rakefile' | |
pull_request: | |
branches: ['**'] | |
paths: | |
- 'lib/**' | |
- 'test/**' | |
- '.github/**' | |
- 'Rakefile' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# lib/compsci/graph.rb uses new-for-3.2 Data class | |
# ruby: [ '2.7', head, jruby-head, truffleruby-head ] | |
ruby: [ head ] | |
name: Ruby ${{ matrix.ruby }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler: none | |
- name: Install dependencies | |
run: gem install bitset | |
- name: Run tests | |
run: rake test |