Skip to content

Commit 8f698a5

Browse files
committed
fix syntax error in github action yamls
1 parent 4c0ff4c commit 8f698a5

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/cpu_setup.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
shell: bash -el {0}
1717
steps:
1818
- uses: actions/checkout@v3
19-
- uses: conda-incubator/setup-miniconda@v2
20-
with:
21-
activate-environment: benchmark_gnn
22-
environment-file: environment_cpu.yml
23-
python-version: 3.7
24-
- run: |
25-
conda info
26-
conda list
19+
- uses: conda-incubator/setup-miniconda@v2
20+
with:
21+
activate-environment: benchmark_gnn
22+
environment-file: environment_cpu.yml
23+
python-version: 3.7
24+
- run: |
25+
conda info
26+
conda list

.github/workflows/gpu_setup.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run:
1616
shell: bash -el {0}
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v3
1919
- uses: conda-incubator/setup-miniconda@v2
2020
with:
2121
activate-environment: benchmark_gnn
@@ -24,3 +24,4 @@ jobs:
2424
- run: |
2525
conda info
2626
conda list
27+

0 commit comments

Comments
 (0)