Skip to content

Initial commit - DataForge project #1

Initial commit - DataForge project

Initial commit - DataForge project #1

Workflow file for this run

name: DataForge CI/CD
on:
push:

Check failure on line 4 in .github/workflows/streamlit.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/streamlit.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
branches: [main]
jobs:
build-test-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -r requirements.txt
- name: Lint code
run: |
pip install flake8
flake8 . --count --selcet=E9,F63,F7,F82 --show-source --statistics