Skip to content

Commit

Permalink
add github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
agung96tm committed Aug 25, 2023
1 parent bccdd57 commit b198d1b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Test'

on:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- run: pip install -r requirements.txt
# - run: pytest .
- run: flake8 .
- run: isort .
- run: black .

0 comments on commit b198d1b

Please sign in to comment.