Skip to content

Commit

Permalink
Merge pull request #1 from DanielT/workflows
Browse files Browse the repository at this point in the history
add a workflow to run pytest
  • Loading branch information
DanielT committed Aug 23, 2023
2 parents 501c27e + fe532e8 commit ae6413d
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# 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: Build and install wheel
run: |
maturin build --out dist --find-interpreter
pip install autosar-data --find-links dist
- name: Test with pytest
run: |
pytest

0 comments on commit ae6413d

Please sign in to comment.