Skip to content

Commit

Permalink
Explicitly install setup tools
Browse files Browse the repository at this point in the history
  • Loading branch information
kchason committed Aug 27, 2024
1 parent 1806ec4 commit abea835
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,32 @@ jobs:

steps:
- uses: actions/checkout@v3

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Pre-commit Checks
run: |
pip -q install pre-commit
pre-commit run --all-files
- name: Start from clean state
run: make clean

- name: Run tests
run: make PYTHON3=python check

# Build the binary wheel as well as the source tar
- name: Build Objects
run: |
pip install -q twine wheel
pip install -q twine wheel setuptools
python setup.py sdist bdist_wheel
# Ensure the objects were packaged correctly and there wasn't an issue with
Expand Down

0 comments on commit abea835

Please sign in to comment.