[WIP] README and docstrings typo fixes #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
- release/** | |
push: | |
branches: | |
- main | |
- release/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
tf-version: | |
- "2.14.1" | |
- "2.15.1" | |
- "2.16.1" | |
container: | |
image: python:${{ matrix.python-version }} | |
steps: | |
- name: Get tensorflow-hooks | |
uses: actions/checkout@v4 | |
- name: Install TensorFlow | |
run: | | |
pip install --upgrade pip | |
pip install tensorflow==${{ matrix.tf-version }} | |
- name: Install tensorflow-hooks | |
run: pip install .[test] | |
- name: Test tensorflow-hooks | |
run: pytest tests |