Skip to content

Add test for presets #854

Add test for presets

Add test for presets #854

Workflow file for this run

name: CI
on:
schedule:
- cron: 0 9 * * *
# 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:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- uses: pre-commit/action@v2.0.3
tests:
needs: pre-commit
runs-on: ${{matrix.os}}
if: |
( github.event_name == 'pull_request' ) && ( needs.pre-commit.result == 'success' )
||
( github.event_name == 'schedule' ) && ( needs.pre-commit.result == 'success' )
||
( github.event_name == 'workflow_dispatch' ) && ( needs.pre-commit.result == 'success' )
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest] # FIX: 'ubuntu-latest'(ubunut-22.04) -> 'ubuntu-20.04': Python version 3.6 was not found in the local cache
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.1.7
- name: install deps for MacOS
if: ${{ matrix.os == 'macos-latest' }}
run: brew install libomp cairo pango gdk-pixbuf libffi
- name: install deps for Ubuntu
if: ${{ matrix.os == 'ubuntu-20.04' }}
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==4.6.0
pip3 install tox-gh-actions==3.1.3
- name: test with tox
run: |
tox