Skip to content

Commit

Permalink
Create tf-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vaxenburg authored Apr 3, 2024
1 parent 061e521 commit 1e203bf
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tf-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow tests tensorflow installation and runs a policy network.

name: tf test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
conda install -y python=3.10
conda env update --file flybody.yml --name base
python -m pip install --upgrade pip
pip install pytest
pip install .[tf]

0 comments on commit 1e203bf

Please sign in to comment.