Skip to content

Commit

Permalink
Update minimum.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gsheni authored Aug 1, 2024
1 parent a1866bd commit c240ad4
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/minimum.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Unit Tests Minimum Versions

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
pull_request:
types: [opened, reopened]

jobs:
minimum:
runs-on: ${{ matrix.os }}
Expand All @@ -18,8 +19,14 @@ jobs:
- os: macos-latest
python-version: '3.12'
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} for arm64
if: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.8' }}
uses: "gabrielfalcao/pyenv-action@v17"
with:
default: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
if: ${{ matrix.os != 'macos-latest' || matrix.python-version != '3.8' }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
Expand Down

0 comments on commit c240ad4

Please sign in to comment.