Skip to content

Bump activeadmin from 2.13.1 to 3.1.0 #65

Bump activeadmin from 2.13.1 to 3.1.0

Bump activeadmin from 2.13.1 to 3.1.0 #65

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
services:
postgres:
image: postgres:15.3
ports:
- 5432:5432
env:
POSTGRES_HOST_AUTH_METHOD: trust
options: >-
--health-cmd pg_isready
--health-interval 2s
--health-timeout 2s
--health-retries 30
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop
- name: Run erb-lint
run: bundle exec erblint --lint-all
- name: Setup database
run: bin/rails db:create db:migrate
env:
RAILS_ENV: test
- name: Run tests
run: bundle exec rspec