Skip to content

Commit

Permalink
Update version to supress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
JPXKQX committed Feb 22, 2024
1 parent 6616688 commit f92da1e
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions .github/workflows/pytest_ci.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
name: Run pkg tests (pytest)

on: [push]

name: Run pkg tests (pytest)

on:
- push
- pull_request

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install pytest
- name: Test with pytest
- name: Test with pytest
run: pytest --junitxml=junit/test-results-${{ matrix.python-version }}.xml
- name: Upload pytest test results
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit f92da1e

Please sign in to comment.