Skip to content

Commit 06d40f4

Browse files
committed
add github actionto test gpu env
1 parent 92f3889 commit 06d40f4

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Diff for: .github/workflows/gpu_setup.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: cpu_setup
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
defaults:
15+
run:
16+
shell: bash -el {0}
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: conda-incubator/setup-miniconda@v2
20+
with:
21+
activate-environment: benchmark_gnn
22+
environment-file: environment_gpu.yml
23+
python-version: 3.7
24+
- run: |
25+
conda info
26+
conda list

0 commit comments

Comments
 (0)