Skip to content

Commit a439c03

Browse files
authored
Update python-package.yml
fix env value from matrix
1 parent a278db5 commit a439c03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
cxx: clang++
6767
omp_num_threads: 2
6868
env:
69-
CC: matrix.cc
70-
CXX: matrix.cxx
71-
OMP_NUM_THREADS: matrix.omp_num_threads
69+
CC: ${{ matrix.cc }}
70+
CXX: ${{ matrix.cxx }}
71+
OMP_NUM_THREADS: ${{ matrix.omp_num_threads }}
7272
steps:
7373
- uses: actions/checkout@v2
7474
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)