Skip to content

nightly

nightly #84

Workflow file for this run

name: nightly
on:
schedule:
- cron: "0 4 * * *" # every day at 4am
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version-file: pyproject.toml
cache: poetry
- name: Install Python dependencies
run: poetry install
- name: Build
env:
APIFY_TOKEN: ${{ secrets.APIFY_TOKEN }}
run: poetry run plucker build
- name: Check
env:
APIFY_TOKEN: ${{ secrets.APIFY_TOKEN }}
run: poetry run plucker check