A library for handling DID identifiers used in Bluesky AT Protocol
at master 34 lines 574 B view raw
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.6' 18 - '2.7' 19 - '3.0' 20 - '3.1' 21 - '3.2' 22 - '3.3' 23 - '3.4' 24 - '4.0' 25 26 steps: 27 - uses: actions/checkout@v3 28 - name: Set up Ruby 29 uses: ruby/setup-ruby@v1 30 with: 31 ruby-version: ${{ matrix.ruby }} 32 bundler-cache: true 33 - name: Run the default task 34 run: bundle exec rake