-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ecd89c2
commit c1e5777
Showing
4 changed files
with
16 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,12 +39,24 @@ jobs: | |
DATABASE_USERNAME: postgres | ||
DATABASE_PASSWORD: postgres | ||
DATABASE_HOST: localhost | ||
matrix: | ||
include: | ||
- decidim-version: '0.28.0' | ||
ruby-version: '3.1.1' | ||
node-version: '18.15.0' | ||
gemfile: 'Gemfile' | ||
steps: | ||
- uses: rokroskar/[email protected] | ||
if: "github.ref != 'refs/heads/develop'" | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
- uses: OpenSourcePolitics/rspec-action@master | ||
env: | ||
DECIDIM_VERSION: ${{ matrix.decidim-version }} | ||
RUBY_VERSION: ${{ matrix.ruby-version }} | ||
NODE_VERSION: ${{ matrix.node-version }} | ||
WEBPACKER_RUNTIME_COMPILE: ${{ matrix.webpacker-runtime-compile }} | ||
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | ||
with: | ||
command: "bundle exec rspec --exclude-pattern 'spec/system/**/*_spec.rb'" | ||
system_tests: | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
# frozen_string_literal: true | ||
|
||
# :nocov: | ||
module Decidim | ||
# This holds the decidim-meetings version. | ||
module Cleaner | ||
def self.version | ||
"4.1.2" | ||
end | ||
|
||
def self.compatible_decidim_version | ||
"0.28.dev" | ||
end | ||
COMPAT_DECIDIM_VERSION = [">= 0.26.0", "< 0.29"].freeze | ||
end | ||
end | ||
# :nocov: | ||
end |