Skip to content

Commit

Permalink
Fix CI env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
westonganger committed Aug 20, 2024
1 parent 6e00ccc commit 6cd4807
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,23 @@ jobs:
- ruby: "2.6"
- ruby: "2.7"
- ruby: "3.0"
db_gem_version: "~> 1.4" # fixes sqlite3 gem dependency issue
- ruby: "3.1"
- ruby: "3.2"
- ruby: "3.3"
### TEST RAILS VERSIONS
- ruby: "2.6"
env:
RAILS_VERSION: "5.2"
rails_version: "5.2"
- ruby: "2.6"
env:
RAILS_VERSION: "6.0"
rails_version: "6.0"
- ruby: "2.6"
env:
RAILS_VERSION: "6.1"
rails_version: "6.1"
- ruby: "3.3"
env:
RAILS_VERSION: "7.0"
rails_version: "7.0"
- ruby: "3.3"
env:
RAILS_VERSION: "7.1"
rails_version: "7.1"
- ruby: "3.3"
env:
RAILS_VERSION: "7.2"
rails_version: "7.2"
### TEST NON-DEFAULT DATABASES
- ruby: "3.3"
db_gem: "mysql2"
Expand Down Expand Up @@ -75,10 +70,11 @@ jobs:
echo "DATABASE_URL=postgres://postgres:password@localhost:5432/test" >> "$GITHUB_ENV"
fi
- name: Set env DB_GEM
if: ${{ matrix.db_gem }}
- name: Set env variables
run: |
echo "RAILS_VERSION=${{ matrix.rails_version }}" >> "$GITHUB_ENV"
echo "DB_GEM=${{ matrix.db_gem }}" >> "$GITHUB_ENV"
echo "DB_GEM_VERSION=${{ matrix.db_gem_version }}" >> "$GITHUB_ENV"
- name: Install ruby
uses: ruby/setup-ruby@v1
Expand Down

0 comments on commit 6cd4807

Please sign in to comment.