Skip to content

Remove duplicated tests #53

Remove duplicated tests

Remove duplicated tests #53

Workflow file for this run

name: Matrix Testing
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.2', '3.1', '3.0', '2.7']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: |
gpg --version
gpg2 --version
gpgconf --list-options gpg-agent
bundle exec rake TESTOPTS="-v"