diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..7c2d8aea --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name : push events workflow + +on: + push: + branches: + - i191855_python-machine-learning-book-3rd-edition + +jobs : + unit-testing : + runs-on: ubuntu-latest + + steps : + - name : Checkout Code + uses : actions/checkout@v2 + + - name : Install Package + run : pip install pytest numpy pandas + + - name : Run Test + run : pytest /ch08/additional_features/test_preprocessing.py