Skip to content

Commit

Permalink
Create 1
Browse files Browse the repository at this point in the history
  • Loading branch information
GBOXDEO authored Feb 27, 2024
1 parent d9b24ca commit 4f19406
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions 1
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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

0 comments on commit 4f19406

Please sign in to comment.