2021-11-02 04:34:04 +01:00
|
|
|
name: Run tests & Publish to Docker Registry
|
2019-12-22 16:49:06 +01:00
|
|
|
|
2020-05-08 20:15:57 +02:00
|
|
|
on: [push, pull_request]
|
2019-12-22 16:49:06 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
2020-03-11 12:49:01 +01:00
|
|
|
python-version: [3.7]
|
2019-12-22 16:49:06 +01:00
|
|
|
|
2021-08-06 08:54:24 +02:00
|
|
|
# service containers to run with `postgres-job`
|
|
|
|
services:
|
|
|
|
# label used to access the service container
|
|
|
|
postgres:
|
|
|
|
# Docker Hub image
|
|
|
|
image: postgres:13
|
|
|
|
# service environment variables
|
|
|
|
# `POSTGRES_HOST` is `postgres`
|
|
|
|
env:
|
|
|
|
# optional (defaults to `postgres`)
|
|
|
|
POSTGRES_DB: test
|
|
|
|
# required
|
|
|
|
POSTGRES_PASSWORD: test
|
|
|
|
# optional (defaults to `5432`)
|
2021-08-15 21:49:56 +02:00
|
|
|
POSTGRES_PORT: 5432
|
2021-08-06 08:54:24 +02:00
|
|
|
# optional (defaults to `postgres`)
|
|
|
|
POSTGRES_USER: test
|
|
|
|
ports:
|
2021-08-15 21:49:56 +02:00
|
|
|
- 15432:5432
|
2021-08-06 08:54:24 +02:00
|
|
|
# set health checks to wait until postgres has started
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
|
2019-12-22 16:49:06 +01:00
|
|
|
steps:
|
2020-05-08 20:15:57 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2020-05-08 20:14:20 +02:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2020-05-08 20:15:57 +02:00
|
|
|
uses: actions/setup-python@v2
|
2020-05-08 20:14:20 +02:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
2020-05-08 20:15:57 +02:00
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
2020-10-01 12:13:28 +02:00
|
|
|
path: ~/.cache/poetry
|
2021-11-02 04:48:13 +01:00
|
|
|
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
|
2020-05-08 20:15:57 +02:00
|
|
|
restore-keys: |
|
2020-10-01 12:13:28 +02:00
|
|
|
${{ runner.os }}-poetry-
|
2020-05-08 20:15:57 +02:00
|
|
|
|
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
|
2020-08-27 10:24:05 +02:00
|
|
|
run: |
|
2021-03-08 13:39:20 +01:00
|
|
|
poetry run black --check .
|
2020-12-06 22:21:18 +01:00
|
|
|
flake8
|
2020-08-27 10:24:05 +02:00
|
|
|
|
2020-05-08 20:14:20 +02:00
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
2022-02-03 22:08:38 +01:00
|
|
|
pytest
|
2022-02-06 15:37:46 +01:00
|
|
|
env:
|
|
|
|
GITHUB_ACTIONS_TEST: true
|
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'
|
2020-05-08 20:15:57 +02:00
|
|
|
uses: docker/build-push-action@v1
|
2020-05-08 20:14:20 +02:00
|
|
|
with:
|
2020-05-08 22:30:09 +02:00
|
|
|
repository: simplelogin/app-ci
|
2020-05-08 20:14:20 +02:00
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2020-05-08 20:15:57 +02:00
|
|
|
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 }}
|
2021-11-02 04:34:04 +01:00
|
|
|
args: Docker image pushed on ${{ github.ref }}
|