Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,17 +138,17 @@ jobs:
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.x

- name: Setup Intel compiler
uses: rscohn2/setup-oneapi@v0
with:
components: |
icx@2024.0.0
ifx@2024.0.0
mkl@2024.0.0
icx@2025.0.4
ifx@2025.0.4
mkl@2025.0.1

- name: Setup Intel environment
run: |
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.16)

project(SkProgs VERSION 0.3 LANGUAGES Fortran)
project(SkProgs VERSION 0.3 LANGUAGES Fortran C)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules)
include(SkProgsUtils)
Expand Down
Loading