Parse schedules π΅οΈββοΈ #1002
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Parse schedules π΅οΈββοΈ" | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
jobs: | |
check: | |
name: "Parse schedules π΅οΈβ" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out repository π" | |
uses: actions/checkout@v4 | |
- name: "Pull the latest changes π" | |
run: git pull | |
- name: "Set up Python π" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: "Install Poetry π¦ (cache-hit)" | |
id: cached-poetry | |
uses: actions/cache@v4 | |
with: | |
path: ~/.local # the path depends on the OS | |
key: poetry-1.8.3 # increment to reset cache | |
- name: "Install Poetry π¦" | |
if: steps.cached-poetry.outputs.cache-hit != 'true' | |
uses: snok/install-poetry@v1 | |
with: | |
version: '1.8.3' | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: "Install Poetry dependencies π¦ (cache-hit)" | |
id: cached-poetry-dependencies | |
uses: actions/cache@v4 | |
with: | |
path: .venv | |
key: venv-test-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
- name: "Install Poetry dependencies π¦" | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: poetry install --no-interaction | |
- name: "Parse schedules π΅οΈββοΈ" | |
env: | |
PARSER_AUTH_KEY: ${{ secrets.PARSER_AUTH_KEY }} | |
INNOHASSLE_API_URL: "https://api.innohassle.ru/events/v0" | |
run: poetry run python -m src |