Fix y-axis label in station area density plot on Statistics page #338
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: validate-csv | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
validate-csv: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Install Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install requirements | |
run: pip install requests pandas numpy | |
- name: Set up output matcher for PR annotations | |
run: echo '::add-matcher::.github/workflows/validate-csv-matcher.json' | |
- name: Check CSV data | |
run: python .github/workflows/validate-csv.py |