Description:
Set the environment variable using the following code
import os
os.environ['GITHUB_TOKEN'] = 'your_github_token_here'
use the environment variable in your code like this:
token = os.environ.get('GITHUB_TOKEN')
- Create a testcode for the example_processor code
Acceptance Criteria:
Description:
Set the environment variable using the following code
use the environment variable in your code like this:
Acceptance Criteria: