Janne Kemppainen

Results 2 comments of Janne Kemppainen

Why would you need an action to run a Python script when you can already do so with the `run` keyword? ```yaml - uses: actions/setup-python@v4 with: python-version: '3.x' - run:...

No, you would need to use workflow commands in the same fashion as this action does: https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions The idea of the action is to be able to define your Python...