-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1 @@ | ||
name: itvtest | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Install dependencies | ||
run: pip install selenium requests futures eventlet | ||
|
||
- name: Run itv_test | ||
run: python ${{ github.workspace }}/itv_test.py | ||
|
||
- name: Run cctv | ||
run: python ${{ github.workspace }}/cctv.py | ||
|
||
- name: 提交更改 | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GBOXDEO" | ||
git add . | ||
git commit *.txt -m "Add generated file" | ||
#git pull --rebase | ||
git push -f | ||
|