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