We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbd3240 commit 14acf1eCopy full SHA for 14acf1e
.github/workflows/python-trackerlist.yml
@@ -17,17 +17,20 @@ jobs:
17
uses: actions/checkout@v3
18
19
- name: Set up Python
20
- uses: actions/checkout@v3
+ uses: actions/setup-python@v3 # 修正使用 setup-python 而非 checkout
21
with:
22
python-version: '3.11'
23
24
- name: Install dependencies
25
run: |
26
- python -m pip install --upgrade pip --break-system-packages
+ python -m venv venv
27
+ source venv/bin/activate
28
+ pip install --upgrade pip
29
pip install requests
30
- - name: Run script to trackerslist
31
+ - name: Run script to update trackerslist
32
33
34
python trackerslist.py
35
36
- name: Commit and push changes
0 commit comments