Skip to content

Commit

Permalink
adding check binday action
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-mccarthy committed Sep 13, 2024
1 parent f8c39f1 commit 85c1db1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check-binday.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Check Binday

on:
workflow_dispatch:
schedule:
- cron: '0 6 * * *'

jobs:
build:

runs-on: ubuntu-latest


steps:
- name: checkout repository
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.11
- 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 }}

0 comments on commit 85c1db1

Please sign in to comment.