Skip to content

Commit

Permalink
Merge pull request #73 from serengil/feat-task-2212-github-actions
Browse files Browse the repository at this point in the history
github actions enabled
  • Loading branch information
serengil authored Dec 23, 2023
2 parents ccd77ed + 1f3564e commit e3ddfc8
Show file tree
Hide file tree
Showing 21 changed files with 2,527 additions and 738 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Tests and Linting

on:
push:
paths:
- '.github/workflows/tests.yml'
- 'retinaface/**'
- 'tests/**'
- 'requirements.txt'
- '.gitignore'
- 'setup.py'
pull_request:
paths:
- '.github/workflows/tests.yml'
- 'retinaface/**'
- 'tests/**'
- 'requirements.txt'
- '.gitignore'
- 'setup.py'

jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Test with pytest
run: |
python -m pytest tests/ -s --disable-warnings
linting:
needs: unit-tests

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install black
pip install .
- name: Lint with pylint
run: |
python -m pylint retinaface/ --fail-under=10
Loading

0 comments on commit e3ddfc8

Please sign in to comment.