Merge pull request #615 from thoughtbot/github-actions/repository-mai… #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI Tests" | |
on: | |
push: | |
branches: "main" | |
pull_request: | |
branches: "*" | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["3.0", "3.1", "3.2"] | |
rails: ["6.1", "7.0", "7.1"] | |
include: | |
- ruby: "3.3" | |
rails: "main" | |
env: | |
RAILS_ENV: "test" | |
RAILS_VERSION: "${{ matrix.rails }}" | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Install NodeJS" | |
uses: "actions/setup-node@v4" | |
with: | |
node-version: "20.x" | |
- name: "Install Ruby ${{ matrix.ruby }}" | |
uses: "ruby/setup-ruby@v1" | |
with: | |
ruby-version: "${{ matrix.ruby }}" | |
- name: "Generate lockfile" | |
run: | | |
bundle config path vendor/bundle | |
bundle lock | |
- name: "Cache Ruby dependencies" | |
uses: "actions/cache@v4" | |
with: | |
path: "vendor/bundle" | |
key: bundle-${{ hashFiles('Gemfile.lock') }} | |
- name: "Install Webdriver" | |
run: | | |
sudo apt-get update | |
sudo apt-get -yqq install chromium-browser | |
- name: "Run Setup" | |
run: | | |
bin/setup | |
- name: "Run Tests" | |
run: | | |
bin/rake |