Skip to content

Commit

Permalink
Merge pull request #3 from Integration-Automation/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
JE-Chen committed Aug 3, 2023
2 parents b79b9cd + 8a04618 commit 136d8a8
Show file tree
Hide file tree
Showing 16 changed files with 471 additions and 4 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
31 changes: 31 additions & 0 deletions .github/workflows/re_edge_gpt_dev_python3_10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ReEdgeGPT Dev Python3.10

on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
schedule:
- cron: "0 8 * * *"

permissions:
contents: read

jobs:
build_dev_version:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r dev_requirements.txt
- name: Test Bot
env:
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
run: python ./test/unit_test/test_bot.py
31 changes: 31 additions & 0 deletions .github/workflows/re_edge_gpt_dev_python3_11.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ReEdgeGPT Dev Python3.11

on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
schedule:
- cron: "0 8 * * *"

permissions:
contents: read

jobs:
build_dev_version:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r dev_requirements.txt
- name: Test Bot
env:
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
run: python ./test/unit_test/test_bot.py
31 changes: 31 additions & 0 deletions .github/workflows/re_edge_gpt_dev_python3_8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ReEdgeGPT Dev Python3.8

on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
schedule:
- cron: "0 8 * * *"

permissions:
contents: read

jobs:
build_dev_version:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r dev_requirements.txt
- name: Test Bot
env:
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
run: python ./test/unit_test/test_bot.py
31 changes: 31 additions & 0 deletions .github/workflows/re_edge_gpt_dev_python3_9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ReEdgeGPT Dev Python3.9

on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
schedule:
- cron: "0 8 * * *"

permissions:
contents: read

jobs:
build_dev_version:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r dev_requirements.txt
- name: Test Bot
env:
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
run: python ./test/unit_test/test_bot.py
31 changes: 31 additions & 0 deletions .github/workflows/re_edge_gpt_stable_python3_10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ReEdgeGPT Stable Python3.10

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 8 * * *"

permissions:
contents: read

jobs:
build_dev_version:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
- name: Test Bot
env:
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
run: python ./test/unit_test/test_bot.py
31 changes: 31 additions & 0 deletions .github/workflows/re_edge_gpt_stable_python3_11.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ReEdgeGPT Stable Python3.11

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 8 * * *"

permissions:
contents: read

jobs:
build_dev_version:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
- name: Test Bot
env:
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
run: python ./test/unit_test/test_bot.py
31 changes: 31 additions & 0 deletions .github/workflows/re_edge_gpt_stable_python3_8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ReEdgeGPT Stable Python3.8

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 8 * * *"

permissions:
contents: read

jobs:
build_dev_version:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
- name: Test Bot
env:
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
run: python ./test/unit_test/test_bot.py
31 changes: 31 additions & 0 deletions .github/workflows/re_edge_gpt_stable_python3_9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ReEdgeGPT Stable Python3.9

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 8 * * *"

permissions:
contents: read

jobs:
build_dev_version:
runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
- name: Test Bot
env:
EDGE_COOKIES: ${{ secrets.EDGE_COOKIES }}
run: python ./test/unit_test/test_bot.py
Loading

0 comments on commit 136d8a8

Please sign in to comment.