Skip to content

Commit

Permalink
feat : test.yml added #149
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Jan 27, 2021
1 parent 3049b52 commit 4241e75
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,56 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: CI

on: [push, pull_request]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: First test
run: |
python setup.py install
python -m art test
python -m art test2
python -m art testcov
python -m art testcov2
- name: Install dev-requirements
run: |
pip install --upgrade --upgrade-strategy=only-if-needed -r dev-requirements.txt
- name: Version check
run: |
python otherfile/version_check.py
- name: Font check
run: |
python otherfile/font_check.py
- name: ART-Decor check
run: |
python otherfile/art_decor_check.py
- name: Other tests
run: |
python -m vulture art/ otherfile/ setup.py art_profile.py --min-confidence 65 --exclude=__init__.py --sort-by-size
python -m bandit -r art -s B311
python -m pydocstyle --match='(?!test).*\.py' -v
- name: Codecov
run: |
python -m art testcov2
codecov
- name: Profile
run: |
python -m cProfile -s cumtime art_profile.py

0 comments on commit 4241e75

Please sign in to comment.