deviras/.github/workflows/python-app.yml

43 lines
1.0 KiB
YAML
Raw Normal View History

2022-08-19 23:04:21 +05:30
name: r/developersIndia titles updater
on:
2022-08-19 23:11:34 +05:30
schedule:
# At 19:30 on every 2nd day-of-week.”
- cron: '30 19 * * */2'
2022-08-19 23:04:21 +05:30
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2023-02-09 17:09:22 +05:30
- name: Test Community IDCard Update
run: |
cd idcard_update
python -m unittest
2022-08-19 23:04:21 +05:30
- name: Change Titles
env:
REDDIT_CLIENT_ID: ${{ secrets.REDDIT_CLIENT_ID }}
REDDIT_CLIENT_SECRET: ${{ secrets.REDDIT_CLIENT_SECRET }}
REDDIT_PASSWORD: ${{ secrets.REDDIT_PASSWORD }}
run: |
2023-02-09 17:09:22 +05:30
python idcard_update/main.py