Make US Tickers File #208
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: Make US Tickers File | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '5 5 * * 6' | |
# reddit access for golang tests | |
# since I am an single dev | |
# what I care about is regression | |
# making sure my code still works on the reddit api | |
env: | |
EOD_HISTORICAL_API_KEY: ${{ secrets.EOD_HISTORICAL_API_KEY }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Check Messages | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
- name: Run Script to get us tickers | |
run: | | |
pip install -r requirements.txt | |
python eod.py | |
python clean.py | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: usd_tickers | |
path: data/all_usd.csv | |
- name: Commit files | |
run: | | |
git add data/*.csv | |
git add data/*.json | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git commit -m "Add changes" -a | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} | |
- uses: sarisia/actions-status-discord@v1 | |
if: failure() | |
with: | |
webhook: ${{ secrets.DISCORD_CODE_STATUS_WEBHOOK }} | |
status: ${{ job.status }} | |
title: ${{github.repository}} | |
description: "Failed to get eod tickers" | |
nofail: false | |
nocontext: false | |
noprefix: false | |
color: 0xff0000 | |
username: Eod Tickers |