Skip to content

Commit

Permalink
Fix syntax of array
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Oct 17, 2023
1 parent 9e6a25c commit 1b25d2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-unit-tests-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
os: [ubuntu-latest]
rust: [stable, beta]
# When vars.EXPERIMENTAL_FEATURES is empty this should become a single matrix item
features: ["", ${{ vars.EXPERIMENTAL_FEATURES }}]
features: ${{ ["", vars.EXPERIMENTAL_FEATURES ] }}

Check warning on line 83 in .github/workflows/ci-unit-tests-os.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci-unit-tests-os.yml#L83

unexpected token "[" while parsing variable access, function call, null, bool, int, float or string. expecting "IDENT", "(", "INTEGER", "FLOAT", "STRING" [expression]
Raw output
.github/workflows/ci-unit-tests-os.yml:83:23: unexpected token "[" while parsing variable access, function call, null, bool, int, float or string. expecting "IDENT", "(", "INTEGER", "FLOAT", "STRING" [expression]
exclude:
# We're excluding macOS beta for the following reasons:
# - the concurrent macOS runner limit is much lower than the Linux limit
Expand Down

0 comments on commit 1b25d2e

Please sign in to comment.