diff --git a/.automation.yml b/.automation.yml index 3e06f8d..f8d786e 100644 --- a/.automation.yml +++ b/.automation.yml @@ -1,8 +1,9 @@ -type: docker +kind: pipeline +name: default steps: -- name: greeting - image: python:3.11-slim +- name: test + image: python commands: - - echo hello - - echo world \ No newline at end of file + - pip install -r requirements.txt + - pytest \ No newline at end of file