This commit is contained in:
Aaron Lee 2021-10-12 21:39:45 +08:00 committed by GitHub
parent 672110aee1
commit d607f26442
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

42
.github/workflows/main.yml vendored Normal file
View 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