ApeWorX / github-action

GitHub Actions CI File for Ape Projects
Apache License 2.0
6 stars 3 forks source link

Support different commands #1

Closed fubuloubu closed 2 years ago

fubuloubu commented 2 years ago

Allow the end user of this in actions to call differnet commands like ape compile --size and ape test (and maybe ape run my_script?)

fubuloubu commented 2 years ago

One possible solution, user adds this to their .github/workflow/action.yaml file:

- uses: ApeWorX/github-action@main
  with:
    command: compile --size
- uses: ApeWorX/github-action@main  # Uses `ape test` by default
fubuloubu commented 2 years ago

solved by #4