Skip to content

Commit

Permalink
debugging workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianGroeger96 committed Feb 14, 2024
1 parent 3d9d119 commit 6932d16
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/pytest-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,19 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.8, 3.9, 3.10] # Adjust based on your needs

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Semantic version range syntax or exact version of a Python version
python-version: "3.9"
# Optional - x64 or x86 architecture, defaults to x64
architecture: "x64"

- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Install dependencies
run: |
Expand Down

0 comments on commit 6932d16

Please sign in to comment.