Skip to content

Commit

Permalink
Created cpu test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed Oct 22, 2022
1 parent 738b87e commit 3f5a7c0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/cpu_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Run CPU Tests"

on: "push"

jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.8"

- name: Upgrade Pip
run: python -m pip install --upgrade pip

- name: Install Dependencies
run: |
pip install -r requirements/requirements.txt
pip install -r requirements/requirements-dev.txt
- name: Prepare Data
run: python prepare_data.py

- name: Run CPU Tests
run: pip install pytest

0 comments on commit 3f5a7c0

Please sign in to comment.