mirror of
https://github.com/aaronleetw/Attendance.git
synced 2024-11-14 19:11:39 -08:00
CICD
This commit is contained in:
parent
672110aee1
commit
d607f26442
1 changed files with 42 additions and 0 deletions
42
.github/workflows/main.yml
vendored
Normal file
42
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
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
|
Loading…
Reference in a new issue