Skip to content

Commit

Permalink
pytest without docker
Browse files Browse the repository at this point in the history
  • Loading branch information
awerdich committed Sep 2, 2024
1 parent 082a99c commit 1dc5d98
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: pytest
on:
pull_request:
push:
branches:
- develop
- main
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, mac-os-latest, windows-latest]
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.11"
name: Test
runs-on: ${{ matrix.os }}

steps:
- name: checkout
uses: actions/checkout@v3

- name: setup_python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: install dependencies
run: python -m pip install pytest pytest-cov .

- name: Run tests
run: pytest

0 comments on commit 1dc5d98

Please sign in to comment.