app-MAIL-temp/.github/workflows/main.yml

73 lines
2.2 KiB
YAML
Raw Normal View History

name: Run tests & Public to Docker Registry
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
2020-03-11 12:49:01 +01:00
python-version: [3.7]
steps:
- uses: actions/checkout@v2
2020-05-08 20:14:20 +02:00
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
2020-05-08 20:14:20 +02:00
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v1
with:
2020-10-01 12:13:28 +02:00
path: ~/.cache/poetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/peotry.lock') }}
restore-keys: |
2020-10-01 12:13:28 +02:00
${{ runner.os }}-poetry-
2020-05-08 20:14:20 +02:00
- name: Install dependencies
run: |
2020-10-01 12:13:28 +02:00
python -m pip install poetry==1.0.10
poetry config virtualenvs.create false
poetry install
2020-05-08 20:14:20 +02:00
2020-12-06 22:21:18 +01:00
- name: Check formatting & linting
run: |
2021-03-08 13:39:20 +01:00
poetry run black --check .
2020-12-06 22:21:18 +01:00
flake8
2020-05-08 20:14:20 +02:00
- name: Test with pytest
run: |
pytest --cov=. --cov-report=term:skip-covered --cov-report=html:htmlcov --cov-fail-under=60
2020-05-08 20:14:20 +02:00
2020-12-05 15:03:13 +01:00
- name: Archive code coverage results
uses: actions/upload-artifact@v2
with:
name: code-coverage-report
path: htmlcov
2020-05-08 20:14:20 +02:00
- name: Publish to Docker Registry
2020-11-26 10:04:39 +01:00
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: docker/build-push-action@v1
2020-05-08 20:14:20 +02:00
with:
repository: simplelogin/app-ci
2020-05-08 20:14:20 +02:00
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tag_with_ref: true
2020-05-08 20:14:20 +02:00
2020-11-26 10:04:51 +01:00
- name: Create Sentry release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
2020-05-08 20:14:20 +02:00
- name: Send Telegram message
2020-11-26 10:04:39 +01:00
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
2020-05-08 20:14:20 +02:00
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
args: Docker image pushed on ${{ github.ref }}