diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml new file mode 100644 index 0000000..8ce2925 --- /dev/null +++ b/.github/workflows/Test.yml @@ -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 \ No newline at end of file