feature importance #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push Test Workflow | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
unit-testing: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8"] | |
steps: | |
- name : Checkout code | |
uses : actions/checkout@main | |
- name : Install Packages | |
run : | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -r requirements.txt | |
- name : Run tests | |
run : pytest 5_unittest.py -v -s --disable-warnings | |