Skip to content

Commit

Permalink
Stub sync workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
josh authored Jul 8, 2024
1 parent 0efd4ea commit 79071a5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Sync

on:
schedule:
- cron: "0 8 * * *"
workflow_dispatch:

jobs:
run:
runs-on: ubuntu-latest
concurrency: sync

steps:
- name: Checkout main branch
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"

- name: Install uv
run: pipx install uv

- name: Install dependencies
run: |
uv pip install --system --constraint requirements.txt '.'
- name: Sync
run: |
imdb-trakt-sync --help

0 comments on commit 79071a5

Please sign in to comment.