DEV Community

Discussion on: Github Actions for Symfony 5 PHPUnit and more

Collapse
 
insan3 profile image
Oscar Nevárez

I'd love to see an Github Action that stack up Flex recipes. Actually, are flex recipes dead already? It's been a long time since my Sf days

Collapse
 
romaixn profile image
Romain

Under what circumstances could recipes be interesting in a Github Actions?

Collapse
 
insan3 profile image
Oscar Nevárez • Edited

Probably just my imagination and no real-world usage here but...
I guess you could use it to compose base applications then put your on top of that base.

Smth like:

-
- uses romain/flex
   with:
     - recipe1
     - recipe2
     - recipe3
- uses: actions/checkout@v2
- merge, test, build variant, etc [...]
Enter fullscreen mode Exit fullscreen mode
Thread Thread
 
tacman profile image
Tac Tacelosky

Recipes change code that should be checked into source control. So it doesn't make sense to put that in CI (unless maybe you're testing a bundle and recipes, but that's a different issue).