Skip to content

Commit 2a843d1

Browse files
committed
Fixed invalid env
1 parent a55efb7 commit 2a843d1

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

.github/workflows/add-even.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
- name: Check out code
1212
uses: actions/checkout@master
1313
- name: Create build directory
14-
run: mkdir ${{ env.repo }}
14+
run: mkdir ${{ env.path }}
1515
- name: Compile
16-
working-directory: ${{ env.repo }}
16+
working-directory: ${{ env.path }}
1717
run: |
1818
cmake ..
1919
make
2020
- name: Run tests
21-
working-directory: ${{ env.repo }}
21+
working-directory: ${{ env.path }}
2222
run: ctest -V

.github/workflows/calculate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
- name: Check out code
1212
uses: actions/checkout@master
1313
- name: Create build directory
14-
run: mkdir ${{ env.repo }}
14+
run: mkdir ${{ env.path }}
1515
- name: Compile
16-
working-directory: ${{ env.repo }}
16+
working-directory: ${{ env.path }}
1717
run: |
1818
cmake ..
1919
make
2020
- name: Run tests
21-
working-directory: ${{ env.repo }}
21+
working-directory: ${{ env.path }}
2222
run: ctest -V

.github/workflows/fibonacci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
- name: Check out code
1212
uses: actions/checkout@master
1313
- name: Create build directory
14-
run: mkdir ${{ env.repo }}
14+
run: mkdir ${{ env.path }}
1515
- name: Compile
16-
working-directory: ${{ env.repo }}
16+
working-directory: ${{ env.path }}
1717
run: |
1818
cmake ..
1919
make
2020
- name: Run tests
21-
working-directory: ${{ env.repo }}
21+
working-directory: ${{ env.path }}
2222
run: ctest -V

.github/workflows/generate-sequence.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
- name: Check out code
1212
uses: actions/checkout@master
1313
- name: Create build directory
14-
run: mkdir ${{ env.repo }}
14+
run: mkdir ${{ env.path }}
1515
- name: Compile
16-
working-directory: ${{ env.repo }}
16+
working-directory: ${{ env.path }}
1717
run: |
1818
cmake ..
1919
make
2020
- name: Run tests
21-
working-directory: ${{ env.repo }}
21+
working-directory: ${{ env.path }}
2222
run: ctest -V

.github/workflows/max-of-vector.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
- name: Check out code
1212
uses: actions/checkout@master
1313
- name: Create build directory
14-
run: mkdir ${{ env.repo }}
14+
run: mkdir ${{ env.path }}
1515
- name: Compile
16-
working-directory: ${{ env.repo }}
16+
working-directory: ${{ env.path }}
1717
run: |
1818
cmake ..
1919
make
2020
- name: Run tests
21-
working-directory: ${{ env.repo }}
21+
working-directory: ${{ env.path }}
2222
run: ctest -V

.github/workflows/nwd-nnw.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
- name: Check out code
1212
uses: actions/checkout@master
1313
- name: Create build directory
14-
run: mkdir ${{ env.repo }}
14+
run: mkdir ${{ env.path }}
1515
- name: Compile
16-
working-directory: ${{ env.repo }}
16+
working-directory: ${{ env.path }}
1717
run: |
1818
cmake ..
1919
make
2020
- name: Run tests
21-
working-directory: ${{ env.repo }}
21+
working-directory: ${{ env.path }}
2222
run: ctest -V

.github/workflows/password-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
- name: Check out code
1212
uses: actions/checkout@master
1313
- name: Create build directory
14-
run: mkdir ${{ env.repo }}
14+
run: mkdir ${{ env.path }}
1515
- name: Compile
16-
working-directory: ${{ env.repo }}
16+
working-directory: ${{ env.path }}
1717
run: |
1818
cmake ..
1919
make
2020
- name: Run tests
21-
working-directory: ${{ env.repo }}
21+
working-directory: ${{ env.path }}
2222
run: ctest -V

.github/workflows/vector-of-shared-ptrs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
- name: Check out code
1212
uses: actions/checkout@master
1313
- name: Create build directory
14-
run: mkdir ${{ env.repo }}
14+
run: mkdir ${{ env.path }}
1515
- name: Compile
16-
working-directory: ${{ env.repo }}
16+
working-directory: ${{ env.path }}
1717
run: |
1818
cmake ..
1919
make
2020
- name: Run tests
21-
working-directory: ${{ env.repo }}
21+
working-directory: ${{ env.path }}
2222
run: ctest -V

0 commit comments

Comments
 (0)