Added catch all for unknown std::from_chars error code #425
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: Build on Debian Bookworm | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build Docker images | |
uses: docker/build-push-action@v5 | |
with: | |
file: docker/debian/Dockerfile_bookworm | |
load: true | |
tags: cgimap:bookworm | |
- name: Running Docker image | |
run: | | |
docker run --entrypoint /bin/bash cgimap:bookworm -c "/usr/local/bin/openstreetmap-cgimap --help" |