Skip to content

Commit

Permalink
Attempt using apt-get for python3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Oct 3, 2024
1 parent 01cd9a5 commit 529ab14
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/typing.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Style
name: Typing

on:
push:
Expand All @@ -7,6 +7,9 @@ on:
branches: [main]
workflow_call:

env:
UV_SYSTEM_PYTHON: 1

jobs:
type-check:
runs-on: ubuntu-latest
Expand All @@ -19,6 +22,7 @@ jobs:
- name: Install dependencies
run: |
pip install -U pip
pip install .
pip install mypy
- name: Run mypy
Expand All @@ -28,15 +32,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.6
- name: Install dependencies
python-version: 3.12
- name: Install pyenv
run: |
pip install -U pip
pip install mypy
pip install pyenv
- name: Install python
run: |
pyenv install 3.6
pyenv global 3.6
- name: Run mypy
run: |
mypy komodoenv --python-version 3.6
python3.6 -m pip install -U pip
python3.6 -m pip install mypy
python3.6 -m mypy komodoenv --python-version 3.6

0 comments on commit 529ab14

Please sign in to comment.