Skip to content

Commit

Permalink
create action
Browse files Browse the repository at this point in the history
  • Loading branch information
skullface committed Aug 7, 2023
1 parent 5612588 commit 495a773
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/fetch-data.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Fetch data

jobs:
fetch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip" # caching pip dependencies
run: pip install -r requirements.txt
- name: Get data
run: python src/beachland.py > beachland.json

0 comments on commit 495a773

Please sign in to comment.