Skip to content

Bump faraday from 2.12.0 to 2.12.2 #17

Bump faraday from 2.12.0 to 2.12.2

Bump faraday from 2.12.0 to 2.12.2 #17

Workflow file for this run

name: RSpec CI
on:
# allow running action manually
workflow_dispatch:
# trigger on push to master branch
pull_request:
branches:
- main
jobs:
CI:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
ports:
- '5432:5432'
env:
POSTGRES_DB: rails_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
env:
RAILS_ENV: test
DATABASE_URL: 'postgres://postgres:password@localhost:5432/rails_test'
permissions:
packages: read
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
with:
ruby-version: '3.2.1' # Not needed with a .ruby-version file
- run: bundle install
- run: bundle exec rails assets:precompile
- run: bundle exec rails db:create
- run: bundle exec rails db:migrate
- run: bundle exec rspec