Skip to content

Merge pull request #137 from oslokommune/upload-sdk-env #445

Merge pull request #137 from oslokommune/upload-sdk-env

Merge pull request #137 from oslokommune/upload-sdk-env #445

name: Run Tests
on:
pull_request:
push:
branches: main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install tox
- name: Test with tox
run: tox -e py,flake8,black,mypy