#!/bin/bash
set -e # stop early on non-zero exit
cargo clippy --all-targets -- -D warnings # syntax and style tests
cargo fmt --check # formatting test
cargo llvm-cov -- --nocapture # integration tests w/ coverage summary
cargo llvm-cov --html -- --nocapture # integration tests w/ coverage report (target/llvm-cov/html/index.html)
cargo doc --no-deps # gen api docs (target/doc/orcapod/index.html)
Progress is tracked under GH project orcapod. We track only issues in the project so don't add PRs.
- Contributor indicates to others they are picking up an issue by:
- Self-assigning the issue
- Opening a draft PR to
dev
branch that links the issue(s) it will fix - Updating the issue status to
In Progress
- Contributor indicates to others their contribution is ready for review by:
- Marking their draft PR as
Ready for Review
- Assigning reviewers
- Updating the issue status to
Ready for Review
- Marking their draft PR as
- Reviewers should do the following after submitting a review:
- If any updates were requested:
- Update the issue status to
Changes Requested
- Update the issue status to
- If changes are approved:
- Merge the PR
- Either update the issue status to
Done
or close the issue manually
- If any updates were requested:
- Contributors working on reviewer requested changes should:
- Convert their PR to draft
- Update the issue status to
In Progress
- Repeat steps 2 and 3 as needed
Overview
: A birdseye view of issues in table form. Convenient for sorting and updating priority, estimate, assignee, and status.Kanban
: A board to capture live progress visually. Status can be updated by dragging cards to their appropriate status column.
- Newly opened issues are automatically added with the status
Todo
- Reopened issues will automatically update status to
Todo
- Issue will automatically close once their status is updated to
Done
- Manually closed issues will automatically update status to
Done
# based on debian
chmod u=rwx,g=rx,o=rx $(find . -not -path "./.git*" -type d | sort) # directories
chmod u=rw,g=r,o=r $(find . -not -path "./.git/*" -type f | sort) # files