Update pin #1012
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: "main" | |
on: ["push", "workflow_dispatch"] | |
jobs: | |
pyright: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "blakeNaccarato/[email protected]" | |
with: | |
python-version: "3.11" | |
- run: pyright | |
ruff: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "blakeNaccarato/[email protected]" | |
with: | |
python-version: "3.11" | |
- run: "ruff --no-fix --output-format github ." | |
pytest: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "blakeNaccarato/[email protected]" | |
with: | |
python-version: "3.11" | |
# * -------------------------------------------------------------------------- * # | |
- name: Install PySide6 system dependencies | |
run: | | |
# https://askubuntu.com/questions/900285/libegl-so-1-is-not-a-symbolic-link | |
sudo apt update | |
sudo apt install libegl1 | |
# * -------------------------------------------------------------------------- * # | |
- run: "pytest --cov" | |
- uses: "codecov/[email protected]" | |
fawltydeps: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "blakeNaccarato/[email protected]" | |
with: | |
python-version: "3.11" | |
- run: "fawltydeps" | |
bump_project: | |
needs: ["pyright", "ruff", "pytest", "fawltydeps"] | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "blakeNaccarato/[email protected]" | |
with: | |
python-version: "3.11" | |
install-project: false | |
- uses: "stefanzweifel/[email protected]" | |
with: | |
commit_message: "Update project." |