diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 14:22:50 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 14:57:04 +0100 |
commit | bc4cf3160f653fd5fbc368a42128945379291208 (patch) | |
tree | 1988dfff6de688e3308abc0336d822f4affc9b86 /.github/workflows/ci.yml | |
parent | workflows/ci: upgrade an action (diff) | |
download | cgitize-bc4cf3160f653fd5fbc368a42128945379291208.tar.gz cgitize-bc4cf3160f653fd5fbc368a42128945379291208.zip |
workflows/ci: use GitHub token for unit tests
For some reason, unit tests started failing during CI runs.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4364d5e..7f379d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,9 @@ jobs: matrix: python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] name: 'Test / ${{ matrix.python-version }}' + env: + # API request rate limit is easily exceeded otherwise: + CGITIZE_GITHUB_TOKEN: '${{ secrets.CGITIZE_GITHUB_TOKEN }}' steps: - name: Checkout uses: actions/checkout@v3 |