Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI Conflicts #168

Merged
merged 1 commit into from
Aug 27, 2024
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