Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,25 @@ jobs:

steps:
- uses: actions/checkout@v4

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

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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

Expand All @@ -75,7 +80,7 @@ jobs:
- name: Upload HTML Docs
uses: actions/upload-artifact@v4
with:
name: packages
name: packages-${{ matrix.python-version }}
path: ./dist/

# If this commit is the result of a Git tag, push the wheel and tar packages
Expand Down