mirror of
https://github.com/aaronleetw/Attendance.git
synced 2024-11-14 11:01:39 -08:00
Update main.yml
This commit is contained in:
parent
24de138766
commit
f1541a7b20
1 changed files with 22 additions and 2 deletions
24
.github/workflows/main.yml
vendored
24
.github/workflows/main.yml
vendored
|
@ -9,7 +9,27 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
max-parallel: 4
|
||||
matrix:
|
||||
python-version: [3.7]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r ./requirements.txt
|
||||
|
||||
- name: Check for Syntax Errors in app.py
|
||||
run: |
|
||||
python -m py_compile app.py
|
||||
|
||||
- name: CD
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
|
@ -20,6 +40,6 @@ jobs:
|
|||
cd /home/ubuntu/Attendance
|
||||
git pull
|
||||
source ./Attendance/bin/activate
|
||||
pip install -r requirements.txt
|
||||
pip install -r ./requirements.txt
|
||||
deactivate
|
||||
sudo systemctl restart Attendance.service
|
||||
sudo systemctl restart Attendance
|
||||
|
|
Loading…
Reference in a new issue