Skip to content

imple: clean

imple: clean #38

Workflow file for this run

name: Run Pytest
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
# install fio io tools
- name: Install fio
run: |
sudo apt-get update
sudo apt-get install fio
- name: install nvme-cli
run: |
sudo apt-get install nvme-cli
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: run pytest
run: |
python -m pytest