Skip to content

milsman2 made a push. #24

milsman2 made a push.

milsman2 made a push. #24

Workflow file for this run

name: DG Tourney API Build
run-name: ${{ github.actor }} made a push.
on: [push]
jobs:
Run-Scraper-Build:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install dependencies
run: |
pip install -r ./scraper/requirements.txt
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
- name: Run Python black
uses: psf/black@stable
with:
options: '--check --verbose'
src: './scraper/src'
- name: Run Python Program
run: |
python -m scraper.src.main
- run: echo "🍏 This job's status is ${{ job.status }}."