Skip to content

GitHub CI Quick Links

Robb edited this page Mar 8, 2023 · 4 revisions

Helpful Links for Understanding Continuous Integrations

Setting up a CI

Understanding GitHub Actions: GitHub Actions

Building CI for Python: Python CI

Building CI for Node: Node CI

How to add a working directory: Working Directory link

Adding Secrets to repository: Secrets

  • Secrets are necessary for the .env file so that it is not publicly accessible, since it is necessary for the Python CI to run

Example on using GitHub Secrets: Using Secrets

Adding Linting to CI Runs: Adding Linting

  • The pylint docs provide examples of the many tools available for linting with pylint
  • Docs for ESLint Docs
  • Important Note do not use the keyword find for looping through files. Doing so allows for files to be wrongfully allowed/ignored. More info here.