Skip to content

Merge pull request #9 from cbdq-io/bugfix/update-python-packages #27

Merge pull request #9 from cbdq-io/bugfix/update-python-packages

Merge pull request #9 from cbdq-io/bugfix/update-python-packages #27

Workflow file for this run

---
name: Pipeline
on:
push: {}
permissions:
id-token: write
contents: read
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Install Python Requirements
run: |
pip install -qr requirements.txt
pip freeze
- name: Lint
run: make lint
- name: Build
run: ./uk/gov/metoffice/historic_station_data/scripts/etl.py
- name: Test
run: make test