A library for handling DID identifiers used in Bluesky AT Protocol
1name: Ruby
2
3on:
4 push:
5 branches:
6 - master
7
8 pull_request:
9
10jobs:
11 build:
12 runs-on: ubuntu-latest
13 name: Ruby ${{ matrix.ruby }}
14 strategy:
15 matrix:
16 ruby:
17 - '2.7'
18 - '3.0'
19 - '3.1'
20 - '3.2'
21
22 steps:
23 - uses: actions/checkout@v3
24 - name: Set up Ruby
25 uses: ruby/setup-ruby@v1
26 with:
27 ruby-version: ${{ matrix.ruby }}
28 bundler-cache: true
29 - name: Run the default task
30 run: bundle exec rake