mirror of
https://github.com/aaronleetw/Attendance.git
synced 2024-11-14 19:11:39 -08:00
43 lines
939 B
YAML
43 lines
939 B
YAML
|
name: Flask CICD
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
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@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: |
|
||
|
py -m py_compile app.py
|
||
|
|
||
|
- name: CD
|
||
|
uses: appleboy/ssh-action@master
|
||
|
with:
|
||
|
host: ${{ secrets.HOST }}
|
||
|
USERNAME: ${{ secrets.USERNAME }}
|
||
|
KEY: ${{ secrets.SSHKEY }}
|
||
|
script: |
|
||
|
cd /home/ubuntu/Attendance
|
||
|
git pull
|
||
|
sudo systemctl restart Attendance.service
|