Skip to content

Commit

Permalink
ci: fix typo in env var name
Browse files Browse the repository at this point in the history
  • Loading branch information
user2589 committed Jul 25, 2020
1 parent a1ac2ac commit f6efcad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
python-version: [2.7, 3.6, 3.7, 3.8]
python-version: [2.7, 3.6, 3.8]

steps:
- uses: actions/checkout@v2
Expand All @@ -35,5 +35,5 @@ jobs:
- name: Run tests on Python ${{ matrix.python-version }}
env:
GITHUB_API_TOKENS: ${{ secrets.GH_TOKEN }}
GITHUB_API_TOKENS: ${{ secrets.GH_TOKENS }}
run: make test
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ REST (v3) API
-------------
.. autoclass:: GitHubAPI
:members:
:exclude-members:
:exclude-members: token_class

GraphQL (v4) API
----------------
Expand Down
3 changes: 2 additions & 1 deletion stscraper/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ def issue_events(self, repo, issue_no):
@staticmethod
def project_exists(repo_slug):
"""Check if the project exists.
This is a slightly cheaper alternative to getting repository info.
This is a slightly cheaper alternative to getting repository info. It
does not using API keys.
"""
for i in range(5):
try:
Expand Down

0 comments on commit f6efcad

Please sign in to comment.