Skip to content

Commit

Permalink
Create test_platforms.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
manatlan authored Aug 3, 2023
1 parent 37c3855 commit 624c7fc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test_platforms.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: test platforms

on:
workflow_dispatch:

jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
poetry-version: ["1.5.1"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: poetry run pytest
run: |
poetry install --with dev
poetry run pytest

0 comments on commit 624c7fc

Please sign in to comment.