Skip to content

Bump werkzeug from 2.2.2 to 2.2.3 in /bk-api #158

Bump werkzeug from 2.2.2 to 2.2.3 in /bk-api

Bump werkzeug from 2.2.2 to 2.2.3 in /bk-api #158

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
job1:
name: Build and test docker images
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Build and run services
run: make svc-up
- name: Wait for docker-compose services
run: while [ $(curl -s localhost:5000)_ != "SAGE Beekeeper API_" ] ; do echo waiting... ; sleep 2 ; done
- name: Run tests
run: make test
- name: Clean up services
run: make svc-down