Skip to content

Automated update : build-9532216054 #6

Automated update : build-9532216054

Automated update : build-9532216054 #6

#Automation script - function_verifier
#This action will start on any commit/push to any branch and verify the function of the script
name: Function Verifier
on:
push:
branches:
- '*'
- '*/*'
- '**'
pull_request:
branches:
- '*'
- '*/*'
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Setup execution environment
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Scrape sources and verify
run: |
python3 main.py