Skip to content

Fix bug with access token hash generation. #50

Fix bug with access token hash generation.

Fix bug with access token hash generation. #50

Workflow file for this run

name: Ruby Lints & Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run lint
run: bundle exec rubocop
- name: Run tests
run: bundle exec rake test
env:
REDIS_URL: redis://localhost:6379