Skip to content

Commit

Permalink
CI yml: add missing commas in build-args list
Browse files Browse the repository at this point in the history
  • Loading branch information
ok300 authored and thesimplekid committed Oct 6, 2024
1 parent 943d00b commit 260f262
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
-p cdk-lnbits,
-p cdk-fake-wallet,
--bin cdk-cli,
--bin cdk-mintd
--bin cdk-mintd,
]
steps:
- name: checkout
Expand Down Expand Up @@ -85,9 +85,9 @@ jobs:
]
database:
[
REDB,
SQLITE,
MEMORY
REDB,
SQLITE,
MEMORY,
]
steps:
- name: checkout
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
[
REDB,
SQLITE,
MEMORY
MEMORY,
]
steps:
- name: checkout
Expand Down Expand Up @@ -146,9 +146,9 @@ jobs:
-p cdk-axum,
-p cdk-strike,
-p cdk-lnbits,
-p cdk-phoenixd
-p cdk-fake-wallet
-p cdk-cln
-p cdk-phoenixd,
-p cdk-fake-wallet,
-p cdk-cln,
]
steps:
- name: checkout
Expand All @@ -170,8 +170,8 @@ jobs:
matrix:
build-args:
[
-p cdk-sqlite
-p cdk-redb
-p cdk-sqlite,
-p cdk-redb,
]
steps:
- name: checkout
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
-p cdk,
-p cdk --no-default-features,
-p cdk --no-default-features --features wallet,
-p cdk-js
-p cdk-js,
]
steps:
- name: checkout
Expand Down

0 comments on commit 260f262

Please sign in to comment.