Add simple benchmark #297
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install poetry | |
run: pip install "poetry>=1.4.2,<1.5" | |
- name: Install dependencies | |
run: poetry install | |
- name: Lint | |
run: poetry run flake8 | |
test: | |
name: Test on ${{ matrix.name }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Linux py39 | |
pyversion: '3.9' | |
- name: Linux py310 | |
pyversion: '3.10' | |
- name: Linux py311 | |
pyversion: '3.11' | |
- name: Linux py312 | |
pyversion: '3.12' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.pyversion }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.pyversion }} | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update -y -qq | |
sudo apt-get install -y libgles2-mesa-dev | |
- name: Install poetry | |
run: pip install "poetry>=1.4.2,<1.5" | |
- name: Install dependencies | |
run: poetry install | |
- name: Test | |
run: poetry run pytest --cov=observ --cov-report=term-missing | |
env: | |
QT_QPA_PLATFORM: offscreen | |
build: | |
name: Build and test wheel | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Install poetry | |
run: pip install "poetry>=1.4.2,<1.5" | |
- name: Install dependencies | |
run: poetry install | |
- name: Build wheel | |
run: poetry build | |
- name: Twine check | |
run: poetry run twine check dist/* | |
- name: Upload wheel artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
path: dist | |
name: dist | |
publish: | |
name: Publish to Github and Pypi | |
runs-on: ubuntu-latest | |
needs: [lint, test, build] | |
if: success() && startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download wheel artifact | |
uses: actions/download-artifact@v1.0.0 | |
with: | |
name: dist | |
- name: Get version from git ref | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | |
- name: Create GH release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.get_version.outputs.VERSION }} | |
release_name: Release ${{ steps.get_version.outputs.VERSION }} | |
draft: false | |
prerelease: false | |
- name: Upload release assets | |
# Move back to official action after fix https://github.com/actions/upload-release-asset/issues/4 | |
uses: AButler/upload-release-assets@v2.0 | |
with: | |
release-tag: ${{ steps.get_version.outputs.VERSION }} | |
files: 'dist/*.tar.gz;dist/*.whl' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_PASSWORD }} |