Build #1262
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: Build | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- dev | |
pull_request: | |
schedule: | |
- cron: "17 6 * * *" | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
name: Pre-commit | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3.3.0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt pip | |
pip --version | |
- name: Install Python modules | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt \ | |
pre-commit black flake8 reorder-python-imports | |
- name: Run pre-commit on all files | |
run: | | |
pre-commit run --all-files --show-diff-on-failure --color=always | |
tests: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
name: Run tests | |
steps: | |
- name: Check out code from GitHub | |
uses: actions/checkout@v3.3.0 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install requirements | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt pip | |
pip install -r requirements_dev.txt | |
- name: Tests suite | |
run: | | |
pytest -p no:sugar |