Skip to content

Commit

Permalink
ZDL-27: Create github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanAquino committed Jan 7, 2021
1 parent 8942109 commit c652151
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Shopee Scraper

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
SCA:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black flake8 pytest
- name: Format with black
run: black . --exclude=venv --check

0 comments on commit c652151

Please sign in to comment.