I’m making a data managment platform and I build a repo that performs validation and generates views for downstream use. I want to create a CI/CD where the different branches are checked if they work with the master database.
So one of the actions I want to build copies the master database without data into a database local to the github action and I test if I can define all the views based on what is in the branch. Therefore my github action needs access to the database beyond what is given in a flyctl deploy.
Can you help me with this?