build(deps): bump schemars from 0.8.15 to 0.8.16 #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Postgres NDC Configuration Server | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
build-and-test: | |
name: Build and test docker build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Docker build | |
run: docker build --file ConfigServer.Dockerfile -t ndc-postgres-config-server:1 . | |
- name: Run docker build | |
run: docker run -d -p 9100:9100 ndc-postgres-config-server:1 | |
- name: Test | |
uses: cygnetdigital/wait_for_response@v2.0.0 | |
with: | |
url: "http://localhost:9100/" | |
responseCode: "200" | |
timeout: 2000 | |
interval: 1000 |