[WIP] Post Roulette feed where it sends you random posts by users you follow, unbiased by post age.
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 - '4.0.1'
18
19 steps:
20 - uses: actions/checkout@v4
21 with:
22 persist-credentials: false
23 - name: Set up Ruby
24 uses: ruby/setup-ruby@v1
25 with:
26 ruby-version: ${{ matrix.ruby }}
27 bundler-cache: true
28 - name: Run the default task
29 run: bundle exec rake