Skip to content

Commit

Permalink
Merge pull request #971 from mrapp-ke/use-setup-python-action
Browse files Browse the repository at this point in the history
Use Gitub action "actions/setup-python"
  • Loading branch information
michael-rapp authored Jul 7, 2024
2 parents 1d503cc + 2c2f981 commit c8d7685
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ jobs:
test-build-cache-git
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '>=3.9'
- name: Install OpenCL
run: |
sudo apt update
Expand Down Expand Up @@ -126,6 +130,10 @@ jobs:
test-build-cache-git
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '>=3.9'
- name: Install OpenMP
run: brew install libomp
- name: Install OpenCL
Expand Down Expand Up @@ -155,6 +163,10 @@ jobs:
test-build-cache-git
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '>=3.9'
- name: Prepare MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Install OpenCL
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ jobs:
test-doc-cache-git
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '>=3.9'
- name: Prepare ccache
uses: hendrikmuhs/ccache-action@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
test-format-cache-git
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '>=3.9'
- name: Detect changes
uses: dorny/paths-filter@v3
id: filter
Expand Down

0 comments on commit c8d7685

Please sign in to comment.