Skip to content

Commit

Permalink
Add tests action
Browse files Browse the repository at this point in the history
  • Loading branch information
Algue-Rythme committed Mar 14, 2024
1 parent 23b86f2 commit 573887a
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
44 changes: 44 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Badge section -->
<div align="center">
<a href="#">
<img src="https://img.shields.io/badge/Python-3.7, 3.8, 3.9, 3.10-efefef">
<img src="https://img.shields.io/badge/Python-3.9, 3.10, 3.11-efefef">
</a>
<a href="#">
<img src="https://img.shields.io/badge/License-MIT-efefef">
Expand Down

0 comments on commit 573887a

Please sign in to comment.