Skip to content

Bump rubocop-ast from 1.32.1 to 1.32.3 (#698) #1290

Bump rubocop-ast from 1.32.1 to 1.32.3 (#698)

Bump rubocop-ast from 1.32.1 to 1.32.3 (#698) #1290

Workflow file for this run

name: Ruby
on: [push]
jobs:
rspec:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allow-failures }}
strategy:
matrix:
ruby: ['3.3']
allow-failures: [false]
include:
- ruby: head
allow-failures: true
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install redis
run: sudo apt-get -y install redis-server
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
- name: Check `simplecov` line coverage
run: cat coverage/.last_run.json | jq '.result.line' | grep -q '100'
- name: Check `simplecov` branch coverage
run: cat coverage/.last_run.json | jq '.result.branch' | grep -q '100'
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Correct build Dockerfile
run: docker build . --tag sinatra-post-to-redis
- name: Service can be run
run: |
docker run -d --name=sinatra-post-to-redis sinatra-post-to-redis
sleep 10
docker exec sinatra-post-to-redis true
code-style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up stable ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ruby
- name: Install all dev gems
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Check source files using `rubocop`
run: rubocop
- name: Check that code 100% documented
run: yardoc . | grep -q '100.00% documented'