2020-01-19 21:49:59 +08:00
|
|
|
name: Run tests & Public to Docker Registry
|
2019-12-22 23:49:06 +08:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
2020-01-20 17:27:59 +08:00
|
|
|
python-version: [3.6]
|
2019-12-22 23:49:06 +08:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2020-01-30 11:54:19 +08:00
|
|
|
|
|
|
|
- name: Test formatting
|
|
|
|
run: |
|
|
|
|
pip install black
|
|
|
|
black --check .
|
|
|
|
|
2019-12-22 23:49:06 +08:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
2020-01-30 11:54:19 +08:00
|
|
|
|
2019-12-22 23:49:06 +08:00
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
|
|
|
pip install pytest
|
|
|
|
pytest
|
2020-01-19 21:37:59 +08:00
|
|
|
|
|
|
|
- name: Publish to Docker Registry
|
|
|
|
uses: elgohr/Publish-Docker-Github-Action@master
|
|
|
|
with:
|
|
|
|
name: simplelogin/app
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2020-01-20 05:22:15 +08:00
|
|
|
|
|
|
|
- name: Send Telegram message
|
|
|
|
uses: appleboy/telegram-action@master
|
|
|
|
with:
|
|
|
|
to: ${{ secrets.TELEGRAM_TO }}
|
|
|
|
token: ${{ secrets.TELEGRAM_TOKEN }}
|
2020-02-04 15:44:19 +08:00
|
|
|
args: Docker image pushed on ${{ github.ref }}
|