mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 17:29:39 +00:00
94 lines
2.3 KiB
YAML
94 lines
2.3 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags: [ 'v*' ]
|
|
|
|
env:
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:15
|
|
env:
|
|
POSTGRES_DB: alerta
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
ports:
|
|
- 5432:5432
|
|
options: >-
|
|
--health-cmd pg_isready
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python 3.11
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.11
|
|
- name: Install dependencies
|
|
id: install-deps
|
|
run: |
|
|
python3 -m pip install --upgrade pip
|
|
pip install flake8 pytest
|
|
pip install -r requirements.txt
|
|
pip install -r requirements-dev.txt
|
|
pip install .
|
|
- name: Pre-commit hooks
|
|
id: hooks
|
|
run: |
|
|
pre-commit run -a --show-diff-on-failure
|
|
- name: Test with pytest
|
|
id: test
|
|
env:
|
|
DATABASE_URL: postgres://postgres:postgres@localhost:5432/alerta
|
|
run: |
|
|
pytest --cov=alerta tests/*.py
|
|
- uses: act10ns/slack@v2
|
|
with:
|
|
status: ${{ job.status }}
|
|
steps: ${{ toJson(steps) }}
|
|
if: failure()
|
|
|
|
release:
|
|
name: Publish
|
|
needs: test
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up Python 3.11
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.11
|
|
- name: Build
|
|
id: build
|
|
run: |
|
|
python3 -m pip install --upgrade build
|
|
python3 -m build
|
|
- name: Publish to PyPI
|
|
id: publish
|
|
env:
|
|
TWINE_USERNAME: __token__
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
run: |
|
|
python3 -m pip install --upgrade twine
|
|
python3 -m twine check dist/*
|
|
python3 -m twine upload --verbose dist/*
|
|
|
|
- uses: act10ns/slack@v2
|
|
with:
|
|
status: ${{ job.status }}
|
|
steps: ${{ toJson(steps) }}
|
|
|
|
- name: Test Install
|
|
run: |
|
|
python3 -m pip install --upgrade alerta-server
|
|
python3 -m pip freeze
|