Skip to content

Commit

Permalink
test on python 3.12 on macos 13
Browse files Browse the repository at this point in the history
  • Loading branch information
hbmartin committed Oct 4, 2024
1 parent 6f018a0 commit 6d2eec8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- run: ruff check .
- name: Run mypy if on 3.12, pytype otherwise
run: |
if [[ '${{ steps.cpython3.outputs.python-version }}' == *"3.11"* ]]; then
if [[ '${{ steps.cpython3.outputs.python-version }}' == 3.11* ]]; then
pip install pytype
pytype -j auto graphviz2drawio
else
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/spec_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,17 @@ permissions:
contents: read

jobs:
lint:
runs-on: macos-12
spec-test:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
id: cpython3
with:
python-version: "3.10"
python-version: "3.12"
cache: pip
cache-dependency-path: requirements.txt
allow-prereleases: true
- run: brew install graphviz
- run: pip install -r requirements.txt
- name: Run specs tests script
Expand Down

0 comments on commit 6d2eec8

Please sign in to comment.