MIgrate : Build to UV #16
This file contains hidden or 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 App | |
| on: | |
| push: | |
| # paths-ignore: | |
| # - ".github/**" | |
| # - "frontend/**" | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch : | |
| jobs: | |
| issue: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| activate-environment: "true" | |
| - name: Install Osmium | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y osmium-tool | |
| - name: Install necessary dependencies | |
| run: uv sync | |
| - name: Generate Last hour stats | |
| env: | |
| OSM_USERNAME: ${{ secrets.OSM_USERNAME }} | |
| OSM_PASSWORD: ${{ secrets.OSM_PASSWORD }} | |
| run: | | |
| osmsg --format csv image --last_hour --tags 'building' 'highway' 'waterway' 'amenity' --name stats --all_tags --changeset --summary --charts |