Bump version: 1.0.1 #742
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: Build Branch/PR | |
on: | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
linter: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install liblzo2-dev | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Execute linters | |
run: | | |
pylint -v --rcfile=.pylintrc *.py homcc tests | |
mypy -v --pretty *.py homcc | |
format-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install liblzo2-dev | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Execute format-check | |
uses: psf/black@stable | |
with: | |
options: "--check --color --diff --verbose" | |
- name: Execute isort | |
uses: isort/isort-action@master | |
with: | |
configuration: "--check --color --diff --gitignore --verbose" | |
tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install liblzo2-dev | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run tests | |
run: pytest -v -rfE --cov=homcc --capture=tee-sys |