Skip to content

Bump certifi from 2023.7.22 to 2024.7.4 (#140) #170

Bump certifi from 2023.7.22 to 2024.7.4 (#140)

Bump certifi from 2023.7.22 to 2024.7.4 (#140) #170

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- develop
pull_request:
branches:
- develop
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
fail-fast: false
name: Python ${{ matrix.python-version }}
steps:
- name: checkout repo content
uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: install nox
run: pip install nox==2022.11.21
- name: install poetry
run: pip install poetry==1.3.2
- name: run tests
run: nox --sessions tests-${{ matrix.python-version }}