Skip to content

Commit

Permalink
Merge pull request #40 from serengil/feat-task-2212-github-actions
Browse files Browse the repository at this point in the history
improvements
  • Loading branch information
serengil authored Dec 23, 2023
2 parents 4f9ce13 + b0c06a9 commit fe07258
Show file tree
Hide file tree
Showing 20 changed files with 3,259 additions and 2,184 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/pythonpublish.yml

This file was deleted.

67 changes: 67 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Tests and Linting

on:
push:
paths:
- '.github/workflows/tests.yml'
- 'chefboost/**'
- 'tests/**'
- 'requirements.txt'
- '.gitignore'
- 'setup.py'
pull_request:
paths:
- '.github/workflows/tests.yml'
- 'chefboost/**'
- '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 pandas==1.3.5 numpy==1.22.3 tqdm==4.62.3 psutil==5.9.0
pip install .
- name: Test with pytest
run: |
cd tests
python global-unit-test.py
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 chefboost/ --fail-under=10
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ dist/
Pipfile
Pipfile.lock
.mypy_cache/
.vscode/
.idea/
chefboost.egg-info/
tests/outputs/
Expand All @@ -19,3 +18,4 @@ chefboost/tuning/__pycache__/*
.DS_Store
chefboost/.DS_Store
tests/.DS_Store
.pytest_cache
Loading

0 comments on commit fe07258

Please sign in to comment.