Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fisa712 authored Feb 24, 2023
1 parent 0b52c08 commit 572e54a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 572e54a

Please sign in to comment.