-
Notifications
You must be signed in to change notification settings - Fork 14
52 lines (49 loc) · 1.28 KB
/
python-app.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Python application
on:
push:
branches:
- dev
- master
paths:
- '**.py'
- '**.yml'
- '**.yaml'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Chrome
run: |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt-get install -f
- uses: actions/checkout@v3
- name: Cache Poetry dependencies
id: check_cache
uses: actions/cache@v3
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install Poetry
run: |
pip install poetry
- name: Install dependencies
if: steps.check_cache.outputs.cache-hit != 'true'
run: |
python -m pip install --upgrade pip
python -m poetry install
- name: Test with unittest
run: |
python -m poetry run python -m unittest tests.CI
cd twitter_user_tweet_crawler
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: debug-artifact
path: debug.png