2022-01-04 11:37:04 -05:00
|
|
|
name: Create and publish a Docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-05-06 13:56:19 -04:00
|
|
|
branches: ['master', 'feature/*']
|
2022-01-04 11:37:04 -05:00
|
|
|
|
|
|
|
env:
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
2022-05-06 13:56:19 -04:00
|
|
|
TESTING: true
|
|
|
|
PB_ENABLED: false
|
2022-05-06 14:06:47 -04:00
|
|
|
SQLALCHEMY_DATABASE_URI: "postgresql://postgres:@postgres:5432/crc_test"
|
2022-01-04 11:37:04 -05:00
|
|
|
|
|
|
|
jobs:
|
2022-05-06 13:56:19 -04:00
|
|
|
run_tests:
|
|
|
|
runs-on: ubuntu-latest
|
2022-05-06 14:01:52 -04:00
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres
|
|
|
|
env:
|
2022-05-06 14:06:47 -04:00
|
|
|
POSTGRES_PASSWORD: ''
|
2022-05-06 14:01:52 -04:00
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
2022-05-06 13:56:19 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/setup-python@v3
|
|
|
|
with:
|
|
|
|
python-version: '3.9'
|
|
|
|
architecture: 'x64'
|
|
|
|
|
2022-05-06 14:06:47 -04:00
|
|
|
- run: psql -h postgres -c 'create database crc_test;' -U postgres
|
2022-05-06 13:56:19 -04:00
|
|
|
- run: pipenv install --dev
|
|
|
|
- run: pipenv run coverage run -m pytest
|
|
|
|
- run: pipenv run coverage xml -i
|
|
|
|
|
2022-01-04 11:37:04 -05:00
|
|
|
build-and-push-image:
|
|
|
|
runs-on: ubuntu-latest
|
2022-05-06 13:56:19 -04:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2022-01-04 11:37:04 -05:00
|
|
|
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 }}
|
2022-05-06 13:56:19 -04:00
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|