Sai Mallik Rameshwaram-WD401-level5
Documentation Explanation of YAML file Pipeline setup: This consists of a name and on attributes followed by env attributes. -> name : Gives a name to our automatic checks for the Online Voting Application. Besides, recognize what these checks are for in our GitHub Actions. -> on: This basically d ecides when these checks should happen. And ensures the checks run whenever there's a change in the master code branch. -> env: These stores special details needed for our checks, like database information. we used three environment variables. 1)PG_Database 2)PG_User 3) PG_PASSWORD 1) PG_Database: Specifies the database name used for the Online Voting Application. ...