Skip to content

Commit

Permalink
fix: installs libsqlite3-dev as required by pre-commit python package
Browse files Browse the repository at this point in the history
  • Loading branch information
Langleu committed Jan 6, 2025
1 parent 4c3e658 commit ded146d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/lint-global.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ jobs:
- name: Centralized Actionlint
uses: camunda/infra-global-github-actions/actionlint@f33b10a93487ac736a5f125fc3b13b1066ba760f # main

# Required for pre-commit to work with Python referenced in .tool-versions for Ubuntu >= 24.04
- name: Install SQLite dependency
run: sudo apt-get install -y libsqlite3-dev

- name: Install tooling using asdf
uses: asdf-vm/actions/install@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 # v3

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

# Required for pre-commit to work with Python referenced in .tool-versions for Ubuntu >= 24.04
- name: Install SQLite dependency
run: sudo apt-get install -y libsqlite3-dev

- name: Install tooling using asdf
uses: asdf-vm/actions/install@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 # v3

Expand Down

0 comments on commit ded146d

Please sign in to comment.