Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit 136d8a8

Browse files
authored
Merge pull request #3 from Integration-Automation/dev
Dev
2 parents b79b9cd + 8a04618 commit 136d8a8

16 files changed

+471
-4
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "pip" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "daily"
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ReEdgeGPT Dev Python3.10
2+
3+
on:
4+
push:
5+
branches: [ "dev" ]
6+
pull_request:
7+
branches: [ "dev" ]
8+
schedule:
9+
- cron: "0 8 * * *"
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build_dev_version:
16+
runs-on: windows-2019
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python 3.10
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.10"
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip wheel
27+
pip install -r dev_requirements.txt
28+
- name: Test Bot
29+
env:
30+
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
31+
run: python ./test/unit_test/test_bot.py
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ReEdgeGPT Dev Python3.11
2+
3+
on:
4+
push:
5+
branches: [ "dev" ]
6+
pull_request:
7+
branches: [ "dev" ]
8+
schedule:
9+
- cron: "0 8 * * *"
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build_dev_version:
16+
runs-on: windows-2019
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python 3.11
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.11"
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip wheel
27+
pip install -r dev_requirements.txt
28+
- name: Test Bot
29+
env:
30+
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
31+
run: python ./test/unit_test/test_bot.py
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ReEdgeGPT Dev Python3.8
2+
3+
on:
4+
push:
5+
branches: [ "dev" ]
6+
pull_request:
7+
branches: [ "dev" ]
8+
schedule:
9+
- cron: "0 8 * * *"
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build_dev_version:
16+
runs-on: windows-2019
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python 3.8
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.8"
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip wheel
27+
pip install -r dev_requirements.txt
28+
- name: Test Bot
29+
env:
30+
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
31+
run: python ./test/unit_test/test_bot.py
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ReEdgeGPT Dev Python3.9
2+
3+
on:
4+
push:
5+
branches: [ "dev" ]
6+
pull_request:
7+
branches: [ "dev" ]
8+
schedule:
9+
- cron: "0 8 * * *"
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build_dev_version:
16+
runs-on: windows-2019
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python 3.9
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.9"
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip wheel
27+
pip install -r dev_requirements.txt
28+
- name: Test Bot
29+
env:
30+
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
31+
run: python ./test/unit_test/test_bot.py
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ReEdgeGPT Stable Python3.10
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
schedule:
9+
- cron: "0 8 * * *"
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build_dev_version:
16+
runs-on: windows-2019
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python 3.10
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.10"
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip wheel
27+
pip install -r requirements.txt
28+
- name: Test Bot
29+
env:
30+
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
31+
run: python ./test/unit_test/test_bot.py
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ReEdgeGPT Stable Python3.11
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
schedule:
9+
- cron: "0 8 * * *"
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build_dev_version:
16+
runs-on: windows-2019
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python 3.11
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.11"
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip wheel
27+
pip install -r requirements.txt
28+
- name: Test Bot
29+
env:
30+
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
31+
run: python ./test/unit_test/test_bot.py
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ReEdgeGPT Stable Python3.8
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
schedule:
9+
- cron: "0 8 * * *"
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build_dev_version:
16+
runs-on: windows-2019
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python 3.8
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.8"
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip wheel
27+
pip install -r requirements.txt
28+
- name: Test Bot
29+
env:
30+
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
31+
run: python ./test/unit_test/test_bot.py
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ReEdgeGPT Stable Python3.9
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
schedule:
9+
- cron: "0 8 * * *"
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build_dev_version:
16+
runs-on: windows-2019
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python 3.9
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.9"
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip wheel
27+
pip install -r requirements.txt
28+
- name: Test Bot
29+
env:
30+
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
31+
run: python ./test/unit_test/test_bot.py

0 commit comments

Comments
 (0)