Skip to content

Bump httpx from 1.6.1 to 1.6.2 #57

Bump httpx from 1.6.1 to 1.6.2

Bump httpx from 1.6.1 to 1.6.2 #57

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
rubocop:
name: Rubocop
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
bundler-cache: true
- name: Run rubocop
run: bin/rubocop
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- 3.2
- 3.3
- 3.4
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bin/rails test