Skip to content

Bump golang.org/x/crypto from 0.31.0 to 0.32.0 #48

Bump golang.org/x/crypto from 0.31.0 to 0.32.0

Bump golang.org/x/crypto from 0.31.0 to 0.32.0 #48

name: Build and Test
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Generate credentials
run: python3 generate_credentials.py
- name: Build and start services with Docker Compose
run: |
docker compose up --build -d
- name: Test /ping endpoint
run: |
sleep 10
curl -X 'GET' \
'http://localhost:8072/ping' \
-H 'accept: application/json' | grep '{"message":"pong"}'