Skip to content

Commit

Permalink
Specify Python version for CI
Browse files Browse the repository at this point in the history
This fixes a copy-paste error, where this code was drawn from a file
specifying a test matrix of Python versions.

Signed-off-by: Alex Nelson <[email protected]>
  • Loading branch information
ajnelson-nist committed Nov 8, 2023
1 parent 128fdf9 commit 80e0e21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
java-version: '11'
- name: Install Graphviz
run: sudo apt-get install --yes graphviz
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: '3.12'
- name: Pre-commit Checks
run: |
pip -q install pre-commit
Expand Down

0 comments on commit 80e0e21

Please sign in to comment.