Automated update : build-9532216054 #6
Workflow file for this run
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
#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 |