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

212 lines
6.3 KiB
YAML
Raw Normal View History

2021-11-02 04:34:04 +01:00
name: Run tests & Publish to Docker Registry
2022-05-11 16:35:08 +02:00
on:
push:
pull_request:
types: [ 'opened' ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, "3.10"]
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
steps:
- name: Check out repository
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 }}
- name: Install poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Run caching
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
2022-04-28 15:22:23 +02:00
- name: Install OS dependencies
if: ${{ matrix.python-version }} == '3.10'
run: |
sudo apt update
2022-04-28 16:10:43 +02:00
sudo apt install -y libre2-dev libpq-dev
2022-04-28 15:22:23 +02:00
2020-05-08 20:14:20 +02:00
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install library
run: poetry install --no-interaction
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 .
2022-02-06 15:49:16 +01:00
poetry run flake8
2022-05-01 17:06:10 +02:00
- name: Run db migration
run: |
2022-05-01 17:22:05 +02:00
CONFIG=tests/test.env poetry run alembic upgrade head
2022-05-01 17:06:10 +02:00
2020-05-08 20:14:20 +02:00
- name: Test with pytest
run: |
poetry run pytest
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
build:
runs-on: ubuntu-latest
needs: ['test']
2022-05-11 16:48:27 +02:00
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v'))
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: simplelogin/app-ci
- name: Login to Docker Hub
uses: docker/login-action@v2
2020-05-08 20:14:20 +02:00
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# We need to checkout the repository in order for the "Create Sentry release" to work
- name: Checkout repository
uses: actions/checkout@v2
- name: Prepare version file
run: |
echo "${{ github.ref }}" > .version
- name: Build image and publish to Docker Registry
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
2020-05-08 20:14:20 +02:00
2020-11-26 10:04:51 +01:00
- name: Create Sentry release
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
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 }}
2022-05-12 10:51:57 +02:00
# If we have generated a tag, generate the changelog, send a notification to slack and create the GitHub release
- name: Build Changelog
id: build_changelog
if: startsWith(github.ref, 'refs/tags/v')
uses: mikepenz/release-changelog-builder-action@v3
with:
configuration: ".github/changelog_configuration.json"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2022-05-12 15:22:40 +02:00
- name: Prepare Slack notification contents
if: startsWith(github.ref, 'refs/tags/v')
run: |
changelog=$(cat << EOH
${{ steps.build_changelog.outputs.changelog }}
EOH
)
messageWithoutNewlines=$(echo "${changelog}" | awk '{printf "%s\\n", $0}')
messageWithoutDoubleQuotes=$(echo "${messageWithoutNewlines}" | sed "s/\"/'/g")
echo "${messageWithoutDoubleQuotes}"
echo "SLACK_CHANGELOG=${messageWithoutDoubleQuotes}" >> $GITHUB_ENV
- name: Post notification to Slack
uses: slackapi/slack-github-action@v1.19.0
2022-05-12 10:51:57 +02:00
if: startsWith(github.ref, 'refs/tags/v')
with:
channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
2022-05-12 10:51:57 +02:00
payload: |
{
"blocks": [
2022-05-12 15:22:40 +02:00
{
"type": "header",
"text": {
"type": "plain_text",
"text": "New tag created",
"emoji": true
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Tag: ${{ github.ref_name }}*"
}
},
2022-05-12 10:51:57 +02:00
{
"type": "section",
"text": {
"type": "mrkdwn",
2022-05-12 15:22:40 +02:00
"text": "*Changelog:*\n${{ env.SLACK_CHANGELOG }}"
2022-05-12 10:51:57 +02:00
}
}
]
}
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
2022-05-12 10:51:57 +02:00
- name: Create GitHub Release
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.build_changelog.outputs.changelog }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}