Skip to content

feat: update sponsors (#712) #278

feat: update sponsors (#712)

feat: update sponsors (#712) #278

Workflow file for this run

name: CI and CD
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build pepy image
run: docker build --file infrastructure/dockerfiles/pepy/Dockerfile --tag ghcr.io/psincraian/pepy:latest .
- name: Push image
run: docker push ghcr.io/psincraian/pepy:latest
- name: Build pepy-test image
run: docker build --file infrastructure/dockerfiles/pepy-test/Dockerfile --tag ghcr.io/psincraian/pepy-test:latest .
- name: Push image
run: docker push ghcr.io/psincraian/pepy-test:latest
tests:
name: Tests
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Start environment
run: DOCKER_TAG=latest make start-containers
- name: Run tests
run: DOCKER_TAG=latest make params=-T tests