We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c0afc commit 1ec3695Copy full SHA for 1ec3695
.github/workflows/pytest.yaml
@@ -26,8 +26,12 @@ jobs:
26
tests:
27
strategy:
28
matrix:
29
- python-version: ['3.11', '3.13']
30
- runs-on: ubuntu-latest
+ include:
+ - python-version: '3.11'
31
+ ubuntu-version: '22.04'
32
+ - python-version: '3.13'
33
+ ubuntu-version: '24.04'
34
+ runs-on: ubuntu-${{ matrix.ubuntu-version }}
35
steps:
36
- uses: actions/checkout@v4
37
- name: Set up Python ${{ matrix.python-version }}
.github/workflows/release.yaml
@@ -8,6 +8,12 @@ on:
8
- main
9
tags:
10
- 'v*'
11
+ paths:
12
+ # ... and only if relevant files have changed.
13
+ - docs/**
14
+ - stepup/**
15
+ - pyproject.toml
16
+ - .github/workflows/release.yaml
17
18
env:
19
# This is not critical
0 commit comments