We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d69ab83 commit 0dc9ebeCopy full SHA for 0dc9ebe
1 file changed
.github/workflows/hushengangtong.yml
@@ -24,13 +24,16 @@ jobs:
24
steps:
25
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26
- uses: actions/checkout@v2
27
-
28
- # Runs a single command using the runners shell
29
- - name: Run a one-line script
30
- run: echo Hello, world!
31
32
- # Runs a set of commands using the runners shell
33
- - name: Run a multi-line script
+ - name: Set up Python 3.x
+ uses: actions/setup-python@v2
+ with:
+ python-version: '3.x'
+ - name: Install dependencies
34
run: |
35
- echo Add other actions to build,
36
- echo test, and deploy your project.
+ python -m pip install --upgrade pip
+ pip install aiohttp
+ pip install requests
+ pip install lxml
37
+ pip install pandas
38
+ - name: Download files
39
+ run: python -i ./husheng_action.py
0 commit comments