We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92f3889 commit 06d40f4Copy full SHA for 06d40f4
.github/workflows/gpu_setup.yml
@@ -0,0 +1,26 @@
1
+name: cpu_setup
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
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