Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Create main.yml
  • Loading branch information
fisa712 authored Feb 24, 2023
commit 572e54a766e1f516f3e94b830033186e1c59f04b
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