Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build (Dry Run)

on:
pull_request:
branches:
- main

concurrency:
group: "build-${{ github.head_ref }}"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm

- name: Install dependencies
run: npm ci

- name: Build website
run: npm run build
1 change: 1 addition & 0 deletions docs/python/api/meteostat.config.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ For default values, please refer to the [source code](https://github.com/meteost
| `aviationweather_user_agent` | User agent for Aviation Weather API. | `str` or `None` |
| `metno_forecast_endpoint` | Met.no forecast API endpoint. | `str` |
| `metno_user_agent` | User agent for Met.no APIs. Please refer to the [Met.no API documentation](https://api.met.no/doc/TermsOfService) for more information. | `str` or `None` |
| `gsa_api_base_url` | Base URL for the GeoSphere Austria API. | `str` |

## Methods

Expand Down