Skip to content

Commit

Permalink
add github actionto test gpu env
Browse files Browse the repository at this point in the history
  • Loading branch information
davegrays committed Apr 10, 2023
1 parent 92f3889 commit 06d40f4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/gpu_setup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: cpu_setup

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: benchmark_gnn
environment-file: environment_gpu.yml
python-version: 3.7
- run: |
conda info
conda list

0 comments on commit 06d40f4

Please sign in to comment.