You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
because we use the styles repository for things that are not always lessons (e.g. the workshop template), we need to adjust when make lesson-check-all gets invoked.
For workshop-based repositories, we'd want to invoke make workshop-check. When it's the template itself, we could edit the index file to populate the yaml header to check the validity of the lesson (that's what we used to do on Travis CI).
It seems that we could create a new target in the Makefile (e.g., make check) that would look at the value of the kind : key in the _config.yml and depending on whether it's workshop or lesson would invoke make workshop-check or make lesson-check-all respectively so we could have a simpler GitHub actions file.
The text was updated successfully, but these errors were encountered:
because we use the
styles
repository for things that are not always lessons (e.g. the workshop template), we need to adjust whenmake lesson-check-all
gets invoked.For workshop-based repositories, we'd want to invoke
make workshop-check
. When it's the template itself, we could edit the index file to populate the yaml header to check the validity of the lesson (that's what we used to do on Travis CI).It seems that we could create a new target in the Makefile (e.g.,
make check
) that would look at the value of thekind :
key in the_config.yml
and depending on whether it'sworkshop
orlesson
would invokemake workshop-check
ormake lesson-check-all
respectively so we could have a simpler GitHub actions file.The text was updated successfully, but these errors were encountered: