Skip to content

Update README badge to show GitHub actions documentation build status #6

Update README badge to show GitHub actions documentation build status

Update README badge to show GitHub actions documentation build status #6

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches:
master
permissions:
contents: read
pull-requests: read
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: pip install .[visualization] pytest tensorflow
- name: Run tests
run: pytest tests