Skip to content

Update

Update #8

Workflow file for this run

name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
####python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9"]
tensorflow-version: ["2.15.0"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install tensorflow==${{ matrix.tensorflow-version }}
pip install coveralls
- name: Run tests
run: |
make test_with_coverage
- name: Upload coverage to coveralls
run: |
coveralls
env: |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}