Skip to content

Commit

Permalink
GitHub Action to pip install cssbeautifier and jsbeautifier
Browse files Browse the repository at this point in the history
These are broken by the the new version of `setuptools`...

https://setuptools.pypa.io/en/stable/history.html#v72-0-0
* pypa/setuptools#931
    * pypa/setuptools#4458
  • Loading branch information
cclauss authored Jul 29, 2024
1 parent 0863e19 commit a638480
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pip_install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: pip_install
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
pip_install:
strategy:
fail-fast: false
matrix:
module:
- cssbeautifier
- jsbeautifier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install --upgrade pip
- run: pip install ${{ matrix.module }}

0 comments on commit a638480

Please sign in to comment.