Skip to content

Commit

Permalink
Merge pull request #20 from tricknotes/update-ci
Browse files Browse the repository at this point in the history
Test on Ruby 3.2 and run CI on master branch
  • Loading branch information
tricknotes authored Nov 2, 2024
2 parents 6e67957 + bd9adba commit 0bc38b8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: "CI"

on:
- pull_request
push:
branches:
- "master"
pull_request:

jobs:
build:
Expand All @@ -10,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.0", "3.1"]
ruby: ["2.7", "3.0", "3.1", "3.2"]
rails: ["6.1", "7.0"]

env:
Expand Down
4 changes: 2 additions & 2 deletions spec/lib/ember_cli/assets/asset_map_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
it "includes the most recent javascript build artifacts" do
asset_map = {
"assets" => {
"not-a-match" => {},
"not-a-match" => nil,
"bar.js" => "bar-abc123.js",
"vendor.js" => "vendor-abc123.js",
},
Expand Down Expand Up @@ -42,7 +42,7 @@
it "includes the most recent stylesheet build artifacts" do
asset_map = {
"assets" => {
"not-a-match" => {},
"not-a-match" => nil,
"bar.css" => "bar-abc123.css",
"vendor.css" => "vendor-abc123.css",
},
Expand Down

0 comments on commit 0bc38b8

Please sign in to comment.