janet-lang / spork

Various Janet utility modules - the official "Contrib" library.
MIT License
122 stars 35 forks source link

Add GitHub workflow to automate tests #52

Closed pyrmont closed 3 years ago

pyrmont commented 3 years ago

This adds a GitHub workflow that uses my action-janet-test GitHub Action. That action bundles together a number of different steps:

  1. downloading Janet
  2. installing Janet
  3. downloading JPM
  4. installing JPM
  5. checking out this repository
  6. installing any dependencies (in this case there are none)
  7. running jpm test

You can see similar workflows in use in some of my Janet libraries (e.g. Documentarian and Testament).

bakpakin commented 3 years ago

Thanks, much appreciated!