Skip to content

Commit

Permalink
Test with Alchemy 7.1.a
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdeyen committed Dec 21, 2023
1 parent b6f6cbf commit 396107b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- "3.2"
alchemy:
- "7.0.0"
- "main"
solidus:
- "3.3"
- "4.0"
Expand Down
8 changes: 7 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ else
gem "solidus_frontend", "~> #{solidus_version}.0"
end

gem "alchemy_cms", "~> 7.0.0"
alchemy_version = ENV.fetch("ALCHEMY_VERSION", "7.0")
if alchemy_version == "main"
gem "alchemy_cms", github: "AlchemyCMS/alchemy_cms", branch: "main"
else
gem "alchemy_cms", "~> #{alchemy_version}.0"
end

gem "alchemy-devise", github: "AlchemyCMS/alchemy-devise", branch: "main"

# Specify your gem's dependencies in alchemy-solidus.gemspec
Expand Down

0 comments on commit 396107b

Please sign in to comment.