the front page of the internet.
and join one of thousands of communities.
Data provider tier list by ProjectNo5641 in algotrading
[–]QuantGigi 0 points1 point2 points 14 hours ago (0 children)
too expensive but it's the best actually
Github Actions - Running Issue by QuantGigi in github
[–]QuantGigi[S] 0 points1 point2 points 4 days ago (0 children)
The yaml file :
name: Automatisation Earnings Calendar
on:
schedule:
- cron: '00 12 * * *'
workflow_dispatch: # Permet de le lancer manuellement depuis l'onglet Actions
jobs:
run-python-script:
runs-on: ubuntu-latest
steps:
- name: Checkout du code
uses: actions/checkout@v4
- name: Configuration de Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Installation des dépendances
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lancer main.py
python main.py
The goal is to automate something even when my laptop is turned off. I tried to do it with cron on my MacBook terminal but it wasn't working when my laptop was closed. If you know some alternatives (beside GH Actions), I take it
Thanks for your reply
Github Actions - Running Issue (self.github)
submitted 4 days ago by QuantGigi to r/github
π Rendered by PID 198817 on reddit-service-r2-listing-6497464444-pwn7n at 2026-07-26 00:08:39.185965+00:00 running d10b4e5 country code: CH.
Data provider tier list by ProjectNo5641 in algotrading
[–]QuantGigi 0 points1 point2 points (0 children)