Skip to content

Check Binday

Check Binday #16

Workflow file for this run

name: Check Binday
on:
workflow_dispatch:
schedule:
- cron: '43 3 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run Bindicator
run: |
python src/main.py --uprn ${{ secrets.UPRN }} --topic ${{ secrets.TOPIC }}