Add QuickBooks connector #587
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: Python checks | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
limited-dependencies: ["", "TRUE"] | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install uv | |
uses: install-pinned/uv@142493f5b5da3369d376dd54a60c8f99ba67680d # 0.4.12 | |
- name: Install dependencies | |
env: | |
PARSONS_LIMITED_DEPENDENCIES: ${{ matrix.limited-dependencies }} | |
run: | | |
uv pip install --system -e .[all] | |
uv pip install --system -r requirements-dev.txt | |
- name: Test with pytest | |
run: | | |
coverage run -m pytest | |
env: | |
COVERAGE_FILE: ".coverage.${{ matrix.os }}.${{ matrix.python-version }}${{ matrix.limited-dependencies }}" | |
- name: Store coverage file | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 | |
with: | |
name: coverage-${{ matrix.os }}${{ matrix.python-version }}${{ matrix.limited-dependencies }} | |
path: .coverage.${{ matrix.os }}.${{ matrix.python-version }}${{ matrix.limited-dependencies }} | |
include-hidden-files: true | |
ruff-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python 3.13 | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: "3.13" | |
- name: Install uv | |
uses: install-pinned/uv@142493f5b5da3369d376dd54a60c8f99ba67680d # 0.4.12 | |
- name: Install dependencies | |
run: | | |
uv pip install --system -r requirements-dev.txt | |
- name: Run ruff format | |
run: | | |
ruff format --diff --target-version=py39 . | |
ruff-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python 3.13 | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: "3.13" | |
- name: Install uv | |
uses: install-pinned/uv@142493f5b5da3369d376dd54a60c8f99ba67680d # 0.4.12 | |
- name: Install dependencies | |
run: | | |
uv pip install --system -r requirements-dev.txt | |
- name: Run ruff | |
run: | | |
ruff check --output-format=github . | |
bandit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python 3.13 | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: "3.13" | |
- name: Install uv | |
uses: install-pinned/uv@142493f5b5da3369d376dd54a60c8f99ba67680d # 0.4.12 | |
- name: Install bandit | |
run: | | |
uv pip install --system -r requirements-dev.txt | |
- name: Run bandit scan | |
run: | | |
bandit -c pyproject.toml -r . -ll -ii | |
coverage: | |
runs-on: ubuntu-latest | |
needs: test | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
id: download | |
with: | |
pattern: coverage-* | |
merge-multiple: true | |
- name: Coverage comment | |
id: coverage_comment | |
uses: py-cov-action/python-coverage-comment-action@b2eb38dd175bf053189b35f738f9207278b00925 # v3.29 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MERGE_COVERAGE_FILES: true | |
- name: Store Pull Request comment to be posted | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 | |
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true' | |
with: | |
name: python-coverage-comment-action | |
path: python-coverage-comment-action.txt | |
pip-install: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
limited-dependencies: ["", "TRUE"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- name: Install dependencies | |
env: | |
PARSONS_LIMITED_DEPENDENCIES: ${{ matrix.limited-dependencies }} | |
run: | | |
pip install -r requirements-dev.txt | |
pip install -e .[all] |