-
Notifications
You must be signed in to change notification settings - Fork 99
39 lines (34 loc) · 977 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Matrix Testing
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.3', '3.2', '3.1', '3.0', '2.7']
use_system_libraries: [false, true]
env:
RUBY_GPGME_USE_SYSTEM_LIBRARIES: ${{ matrix.use_system_libraries && matrix.use_system_libraries == 'true' }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install libgpgme-dev
if: ${{ matrix.use_system_libraries }}
run: |
sudo apt install -y libgpgme-dev
- name: Install dependencies
run: bundle install
- name: Run tests
run: |
gpg --version
gpg2 --version
gpgconf --list-options gpg-agent
bundle exec rake TESTOPTS="-v"