Skip to content

ci: Run on all supported Python versions #686

ci: Run on all supported Python versions

ci: Run on all supported Python versions #686

Workflow file for this run

name: Continuous integration
on:
push:
branches-ignore:
- "master"
pull_request:
env:
FLIT_ROOT_INSTALL: 1
jobs:
format-code:
name: Check code format
runs-on: ubuntu-latest
container: python:3.9-slim
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install required packages
run: |
apt update
apt install -y gcc libpcsclite-dev make swig git
- name: Create virtual environment
run: make init
- name: Check code format
run: |
. venv/bin/activate
make check-format
format-import:
name: Check imports format
runs-on: ubuntu-latest
container: python:3.9-slim
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install required packages
run: |
apt update
apt install -y gcc libpcsclite-dev make swig git
- name: Create virtual environment
run: make init
- name: Check code import format
run: |
. venv/bin/activate
make check-import-sorting
lint-style:
name: Check code style
runs-on: ubuntu-latest
container: python:3.9-slim
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install required packages
run: |
apt update
apt install -y gcc libpcsclite-dev make swig git
- name: Create virtual environment
run: make init
- name: Check code style
run: |
. venv/bin/activate
make check-style
lint-typing:
name: Check static typing
runs-on: ubuntu-latest
container: python:3.9-slim
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install required packages
run: |
apt update
apt install -y gcc libpcsclite-dev make swig git
- name: Create virtual environment
run: make init
- name: Check code static typing
run: |
. venv/bin/activate
make check-typing
run:
name: Run nitropy --help
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install required packages
run: |
sudo apt update
sudo apt install -y gcc libpcsclite-dev swig
# For Python 3.13, we need additional build dependencies, see:
# https://github.com/Nitrokey/pynitrokey/issues/610
- name: Install more required packages
run: |
sudo apt update
sudo apt install -y libudev-dev libpython3-dev
- name: Install pynitrokey
run: python3 -m venv venv && venv/bin/pip install .[pcsc]
- name: Run nitropy --help
run: venv/bin/nitropy --help