Milestone 3
Due: Tuesday, November 14th, 09:59 PM
You will now further configure your group repository
Software Requirements Specification (SRS)
Based on the SRS, you are to identify the Application Programming Interface (API) that your library is required to provide.
Git Conventions
We expect all work from this point onward do be done on feature branches and merged into master
or main
via Pull Requests.
Try to work with different branches and "approve" each others pull requests by reviewing their code and then merge into your default project branch.
You must work with your project Git repository. The teaching staff will frequently check the history of your project.
Steps to complete
- Create a private team repository in CS107 organization.
- The project code will be hosted in private repositories within the CS107 organization. A member of your team must create a private repository named after your team ID (e.g.,
team01_2023
for Team 1). After creating the repository, add all team members to it. The teaching staff will have automatic access and do not need to be added. - Within your project repository, create a folder named
API_draft
. Inside this folder, provide a README file detailing the modules, classes, and functions planned for inclusion to meet the SRS requirements. Use this phase to outline your pipeline and begin task allocation among team members. Don't try to be overly specific on the details, as this is likely to change as your code evolves. - Within the
API_draft
folder, also upload a schematic diagram that illustrates the modules and the API structure your library will present. - Within your project repository, you must set up two workflows with GitHub Actions. One workflow will be used for tests and the other for code coverage. You will need two
.yml
files in the.github/workflows
directory in your project repository. The.yml
do not need to have meaningful declarations at this point but you should have at least thename:
option and theon:
option defined. See this link for more details. Make sure theREADME.md
file at the root of your repo includes badges indicating whether your CI workflows are passing or failing. Your workflows are expected to be failing at this point. You should end up with a renderedREADME.md
file that looks like this (workflows may fail or have no status): - In the root of your project repo, you should create a directory called
docs
. You can use this directory to organize documentation and tutorials for your final package. You will begin creating this documentation as part of the next milestone.
Grading breakdown
Points Task 1 Creation of team repository 4 Describing the API 2 Diagram 5 Configuring test action 5 Configuring coverage action 4 Creating project structure 21 Total