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