Update README.md #1609
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: | |
# Manually triggerable in github | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- "docs/**" | |
- "*.md" | |
- ".github/workflows/mirror.yml" | |
- ".gitlab/.gitlab-ci.yml" | |
pull_request: | |
paths-ignore: | |
- "docs/**" | |
- "*.md" | |
- ".github/workflows/mirror.yml" | |
- ".gitlab/.gitlab-ci.yml" | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: pre-commit | |
uses: pre-commit/action@v2.0.3 | |
linux-py39-tests: | |
needs: pre-commit | |
runs-on: ubuntu-latest | |
if: | | |
( github.event_name == 'push' ) && ( needs.pre-commit.result == 'success' ) | |
|| | |
( github.event_name == 'pull_request' ) && ( needs.pre-commit.result == 'success' ) | |
|| | |
( github.event_name == 'workflow_dispatch' ) && ( needs.pre-commit.result == 'success' ) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
- uses: Gr1N/setup-poetry@v8 | |
with: | |
poetry-version: 1.1.7 | |
# - name: update pip if python 3.12 | |
# run: pip install setuptools && python -m ensurepip --upgrade | |
- name: install deps for Ubuntu | |
run: sudo apt-get install build-essential libcairo2 libpango-1.0-0 libpangocairo-1.0-0 libgdk-pixbuf2.0-0 libffi-dev shared-mime-info | |
- name: install tox | |
run: | | |
python3 -m pip install --upgrade pip | |
pip3 install tox==3.28.0 | |
pip3 install tox-gh-actions==2.12.0 | |
- name: test with tox | |
run: | | |
tox |