Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cetanu committed Nov 11, 2024
1 parent d82cf08 commit e701d1f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.11, 3.12]

steps:
- uses: actions/checkout@v2
Expand All @@ -17,7 +17,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt update
sudo apt -y install build-essential python3-dev g++ libprotobuf-dev cmake
python -m pip install --upgrade pip setuptools
python -m pip install poetry
poetry install --no-root
- name: Compile Protobufs
Expand All @@ -26,4 +28,4 @@ jobs:
poetry install
- name: Test with pytest
run: |
poetry run pytest --spec
poetry run pytest --spec -vvv

0 comments on commit e701d1f

Please sign in to comment.