Skip to content

Commit

Permalink
Merge pull request #168 from casework/fix-ci-develop
Browse files Browse the repository at this point in the history
Fix CI Conflicts
  • Loading branch information
ajnelson-nist authored Aug 27, 2024
2 parents 917ad51 + 06f676e commit 02c844f
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,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

0 comments on commit 02c844f

Please sign in to comment.