Jean-Michel Fayard

Results 208 comments of Jean-Michel Fayard

yes that's the hard part, I was wondering what's the best way to have Linx/Windows VM on my mac

It's an error to use `command = "echo " + expr { GREETING }` It should be simply `command = "echo $GREETING"` See documentation https://krzema12.github.io/github-actions-kotlin-dsl/user-guide/type-safe-expressions/#custom-environment-variables

Actually `Contexts.env` should be removed to prevent this error https://github.com/krzema12/github-actions-kotlin-dsl/blob/main/library/src/main/kotlin/it/krzeminski/githubactions/dsl/expressions/Contexts.kt#L16

I did a GitHub code search. The syntax `${{ secrets.GITHUB_TOKEN }}` or `${{ env.MILESTONE }}` is correct. What I have done is broken in this case then, the addition `$`...

yep but I fear that would be a breaking change

@krzema12 can't contribute, going to Germany tomorrow, but I've thought about it. I have a more fancy solution where `EnvContext` generate a `EnvironmentVariable`, where we use a proper type for...

> Kotest has shouldMatch, shouldNotMatch, shouldContain and shouldNotContain, all of which accept Regex versions. Good to know! > I think what we are missing is the the same thing with...

@sksamuel two questions: 1. how would type conversions from string work? I hacked something around, any thoughts? https://github.com/jmfayard/my-kotlin-scripts/blob/49f49dda42c9d529d143c7494f2838c6c851f567/src/test/kotlin/kotest/DataSource.kt#L14-L52 2. how nasty is CSV parsing? in its simple version it seems...

@Kantis probably need some refactoring and handle variants with 20 generic types, but I think I cover the main use cases now. ouch was lots of work :)