add a workflow to run pytest #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# test autosar-data-py with pytest | |
name: Test | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install maturin | |
- name: Prepare virtualenv | |
run: | | |
python -m venv .venv | |
- name: Build and install wheel | |
run: | | |
.venv/bin/activate | |
maturin develop | |
- name: Test with pytest | |
run: | | |
.venv/bin/activate | |
which python | |
ls .venv | |
ls .venv/lib | |
ls .venv/lib/site-packages | |
pytest |