Skip to content

Commit

Permalink
implemented matrix testbank
Browse files Browse the repository at this point in the history
  • Loading branch information
veenstrajelmer committed Dec 7, 2023
1 parent 667f15d commit 50ecae6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 84 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/pytest-py310.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/pytest-py39.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: pytest-py311
name: pytest

on:
push:
Expand All @@ -11,14 +11,19 @@ on:
jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.11"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 50ecae6

Please sign in to comment.