diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..9c665bf --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,44 @@ +name: tests + +on: + push: + branches: ["release-no-advertising"] + pull_request: + branches: ["release-no-advertising"] + +jobs: + build-and-test: + name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}" + runs-on: "${{ matrix.os }}" + + strategy: + matrix: + python-version: ["3.9", "3.10", "3.11"] + os: [ubuntu-latest] + + steps: + - uses: "actions/checkout@v3" + - uses: "actions/setup-python@v4" + with: + python-version: "${{ matrix.python-version }}" + cache: 'pip' + - name: Install dependencies + run: | + set -xe + pip install --upgrade pip setuptools wheel + pip install -r requirements.txt + shell: bash + - name: Build + run: | + set -xe + python -VV + python setup.py install + shell: bash + - name: Run tests + timeout-minutes: 60 + run: | + set -xe + python -VV + python -c "import tf; print('tf', tf.__version__)" + pytest tests + shell: bash diff --git a/README.md b/README.md index 3db5035..89abf1d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@