Skip to content

Merge pull request #90 from merkys/update-certs #26

Merge pull request #90 from merkys/update-certs

Merge pull request #90 from merkys/update-certs #26

Workflow file for this run

---
name: CI
on:
push:
branches: ["master"]
tags:
- "*"
pull_request:
branches: ["master"]
jobs:
tests:
name: "${{ matrix.os }}: Python ${{ matrix.python-version }}"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-22.04"]
runs-on: "${{ matrix.os }}"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- run: |
pip install 'tox<4' tox-gh-actions
tox