Skip to content

Commit

Permalink
Merge pull request #385 from github/andimiya/384/dev_setup_instructions
Browse files Browse the repository at this point in the history
docs: developer setup instructions to run codebase
  • Loading branch information
andimiya committed Sep 27, 2024
2 parents 884ee1e + 9a6421f commit 3763b2f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,21 @@ This action can be configured to authenticate with GitHub App Installation or Pe

We would ❤️ contributions to improve this action. Please see [CONTRIBUTING.md](./CONTRIBUTING.md) for how to get involved.

### Development Setup

- Ensure you have python `3.10+` installed
- Clone this repository and cd into `issue-metrics`
- Create python virtual env
`python3 -m venv .venv`
- Activate virtual env
`source .venv/bin/activate`
- Install dependencies
`pip install -r requirements.txt -r requirements-test.txt`
- Run tests
`make test`
- Run linter
`make lint`

## License

[MIT](LICENSE)
Expand Down

0 comments on commit 3763b2f

Please sign in to comment.