aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-08-23 02:09:09 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-08-23 02:15:16 +0200
commit48e147c2894ce8dca9d2aa21a1369d5062580f03 (patch)
tree81bcc1be75fc1fad68e1d9e393749950692a7f6b /.github
parentrequirements.txt: bump dependencies (diff)
downloadcgitize-48e147c2894ce8dca9d2aa21a1369d5062580f03.tar.gz
cgitize-48e147c2894ce8dca9d2aa21a1369d5062580f03.zip
use separate users for testing
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml19
1 files changed, 9 insertions, 10 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9d58c15..baa7633 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,8 +15,11 @@ jobs:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
name: 'Test / ${{ matrix.python-version }}'
env:
- # API request rate limit is easily exceeded otherwise:
CGITIZE_GITHUB_TOKEN: '${{ secrets.CGITIZE_GITHUB_TOKEN }}'
+ CGITIZE_BITBUCKET_USERNAME: cgitize-test
+ CGITIZE_BITBUCKET_TOKEN: '${{ secrets.CGITIZE_BITBUCKET_TOKEN }}'
+ CGITIZE_GITLAB_USERNAME: cgitize-test
+ CGITIZE_GITLAB_TOKEN: '${{ secrets.CGITIZE_GITLAB_TOKEN}}'
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -48,15 +51,11 @@ jobs:
runs-on: ubuntu-latest
name: 'Test / example config'
env:
- # API request rate limit is easily exceeded otherwise:
CGITIZE_GITHUB_TOKEN: '${{ secrets.CGITIZE_GITHUB_TOKEN }}'
- # Consider creating a separate user (without my private repositories)
- # for testing Bitbucket).
- #CGITIZE_BITBUCKET_USERNAME: egor-tensin
- #CGITIZE_BITBUCKET_TOKEN: '${{ secrets.CGITIZE_BITBUCKET_TOKEN }}'
- # Same goes for GitLab.
- #CGITIZE_GITLAB_USERNAME: egor-tensin
- #CGITIZE_GITLAB_TOKEN: '${{ secrets.CGITIZE_GITLAB_TOKEN}}'
+ CGITIZE_BITBUCKET_USERNAME: cgitize-test
+ CGITIZE_BITBUCKET_TOKEN: '${{ secrets.CGITIZE_BITBUCKET_TOKEN }}'
+ CGITIZE_GITLAB_USERNAME: cgitize-test
+ CGITIZE_GITLAB_TOKEN: '${{ secrets.CGITIZE_GITLAB_TOKEN}}'
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -67,7 +66,7 @@ jobs:
- name: Install dependencies
run: pip install -q -r requirements.txt
- name: Set up ssh-agent
- uses: webfactory/ssh-agent@v0.7.0
+ uses: webfactory/ssh-agent@v0.8.0
with:
ssh-private-key: '${{ secrets.SSH_KEY }}'
- name: Integration test (example config)