Ruby CLI tool for accessing Bluesky API / ATProto
at master 641 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@v4 28 with: 29 persist-credentials: false 30 - name: Set up Ruby 31 uses: ruby/setup-ruby@v1 32 with: 33 ruby-version: ${{ matrix.ruby }} 34 bundler-cache: true 35 - name: Run the default task 36 run: bundle exec rake