Skip to content

Commit

Permalink
chore: bumped actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonator committed Nov 22, 2023
1 parent 98ac665 commit 217ff17
Showing 1 changed file with 7 additions and 47 deletions.
54 changes: 7 additions & 47 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,85 +9,45 @@ jobs:

strategy:
matrix:
rails:
- "6.1"
- "7.0"
- "7.1"

ruby:
- "3.0"
- "3.1"
- "3.2"
rails: ["6.1", "7.0", "7.1", "master"]
ruby: ["3.0", "3.1", "3.2"]

exclude:
- rails: "7.1"

ruby: "3.2"

- rails: "7.1"

ruby: "3.1"

- rails: "7.1"

ruby: "3.0"

- rails: "7.0"

ruby: "3.2"

- rails: "7.0"

ruby: "3.1"

- rails: "7.0"

- rails: "6.0"
ruby: "3.0"

- rails: "6.1"

ruby: "3.2"

- rails: "6.1"

- rails: "6.0"
ruby: "3.1"

- rails: "6.1"

ruby: "3.0"
- rails: "6.0"
ruby: "3.2"

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1

with:
ruby-version: ${{ matrix.ruby }}

- name: Install toolchain

run: |
sudo apt-get update
sudo apt-get install \
build-essential \
libsqlite3-dev
- name: Install bundler

run: gem install bundler

- env:
RAILS_VERSION: ${{ matrix.rails }}

name: Install dependencies

run: bundle install

- env:
RAILS_VERSION: ${{ matrix.rails }}

name: Test

run: bundle exec rspec

0 comments on commit 217ff17

Please sign in to comment.