2022-01-04 17:58:08 +00:00
|
|
|
name: Create and publish a Docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-06-20 17:20:55 +00:00
|
|
|
branches: ['main', 'chore/*', 'feature/*', 'bug/*']
|
2022-01-04 17:58:08 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
2022-06-20 17:25:18 +00:00
|
|
|
SQLALCHEMY_DATABASE_URI: "postgresql://postgres:postgres@localhost:5432/pb_test"
|
|
|
|
PGPASSWORD: postgres
|
2022-01-04 17:58:08 +00:00
|
|
|
jobs:
|
2022-06-20 17:20:55 +00:00
|
|
|
run_tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- uses: browser-actions/setup-chrome@latest
|
|
|
|
with:
|
|
|
|
chrome-version: stable
|
|
|
|
- uses: actions/setup-python@v3
|
|
|
|
with:
|
|
|
|
python-version: '3.9'
|
|
|
|
architecture: 'x64'
|
2022-06-20 19:12:30 +00:00
|
|
|
|
2022-06-20 19:15:28 +00:00
|
|
|
- name: Setup Database
|
2022-06-20 19:17:36 +00:00
|
|
|
run: psql -h localhost -c 'create database pb_test;' -U postgres
|
2022-06-20 19:12:30 +00:00
|
|
|
|
|
|
|
- name: Upgrade pip
|
|
|
|
run: |
|
|
|
|
pip install --constraint=.github/workflows/constraints.txt pip
|
|
|
|
pip --version
|
|
|
|
|
|
|
|
- name: Upgrade pip in virtual environments
|
|
|
|
shell: python
|
|
|
|
run: |
|
|
|
|
import os
|
|
|
|
import pip
|
|
|
|
|
|
|
|
with open(os.environ["GITHUB_ENV"], mode="a") as io:
|
|
|
|
print(f"VIRTUALENV_PIP={pip.__version__}", file=io)
|
|
|
|
|
|
|
|
- name: Install Poetry
|
|
|
|
run: |
|
|
|
|
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
|
|
|
|
poetry --version
|
2022-06-20 20:00:59 +00:00
|
|
|
poetry install
|
2022-06-20 20:05:59 +00:00
|
|
|
poetry env use 3.9
|
2022-06-20 20:00:59 +00:00
|
|
|
|
2022-06-20 19:12:30 +00:00
|
|
|
- name: Run the tests
|
2022-06-20 20:09:52 +00:00
|
|
|
run: poetry run pytest
|
2022-06-20 17:20:55 +00:00
|
|
|
|
2022-01-04 17:58:08 +00:00
|
|
|
build-and-push-image:
|
2022-06-20 17:20:55 +00:00
|
|
|
needs:
|
|
|
|
- run_tests
|
2022-01-04 17:58:08 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Log in to the Container registry
|
|
|
|
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
|
|
|
|
with:
|
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
|
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
|
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|