Update dependency org.springframework.boot:spring-boot-starter-parent to v3.4.0 #774
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: Test whether the dockerized version works | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-docker-compose: | |
name: verify docker-compose setup | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Start databases and map-matching service | |
run: ./development.sh start | |
- name: Verify that dockerized map-matching API is up and running | |
uses: HSLdevcom/jore4-tools/github-actions/healthcheck@healthcheck-v1 | |
with: | |
command: | |
"curl --fail http://localhost:3005/actuator/health --output | |
/dev/null --silent" |