Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,33 @@

jobs:
build:
runs-on: macos-13
runs-on: macos-latest

strategy:
matrix:
python-version: ["3.10", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Upgrade pip
run: |
python -m pip install --upgrade pip

- name: Install dependencies
run: |
pip install .[development]
pip uninstall -y reqif

- name: Run Lint tasks
run: |
invoke lint

- name: Run tests
run: |
invoke test

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
8 changes: 8 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[mypy]

# We ignore build folder but mypy still follows into the Python packages,
# in this case pydantic, starlette, selenium.
# This StackOverflow answers suggests a solution:
# https://stackoverflow.com/a/70367929/598057
[mypy-elementpath.*]
follow_imports = skip
Loading