Skip to content

build(deps): bump certifi from 2024.6.2 to 2024.7.4 (#682) #268

build(deps): bump certifi from 2024.6.2 to 2024.7.4 (#682)

build(deps): bump certifi from 2024.6.2 to 2024.7.4 (#682) #268

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