f strings #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: Test | |
on: | |
push: ~ | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Get Date | |
id: get-date | |
shell: bash | |
run: | | |
echo "date=$(/bin/date -u "+%Y%m")" >> $GITHUB_OUTPUT | |
- name: Cache data | |
uses: actions/cache@v4 | |
id: cache-data | |
with: | |
path: | | |
data/germany.osm.pbf | |
data/filtered/germany.osm.pbf | |
key: ${{ runner.os }}-data-${{ steps.get-date.outputs.date }}-berlin | |
- name: Download Germany | |
if: ${{ steps.cache.outputs.cache-hit != 'true' }} | |
run: | | |
curl --location --fail --output data/berlin.osm.pbf https://download.geofabrik.de/europe/germany/berlin-latest.osm.pbf | |
- name: Import data | |
env: | |
OSM2PGSQL_DATAFILE: berlin.osm.pbf | |
run: | | |
docker compose run --build import import | |
# - name: Start tile server | |
# run: | | |
# docker compose up --build --wait martin | |
- name: Prepare and start API | |
run: | | |
api/prepare-api.sh | |
docker compose up --wait api | |
# - name: Start web server | |
# run: | | |
# docker compose up --build martin-proxy | |
- name: Run API tests | |
working-directory: api | |
run: | | |
python3 tests/tests.py --api http://localhost:5000/api --tests tests/testcases.yml |