Skip to content

Commit

Permalink
ci: Add job that runs nitropy --help
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-nitrokey committed Jan 10, 2025
1 parent a36487b commit ab45f74
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,18 @@ jobs:
run: |
. venv/bin/activate
make check-typing
run:
name: Run nitropy --help
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 swig git
- name: Install pynitrokey
run: python3 -m venv venv && venv/bin/pip install .[pcsc]
- name: Run nitropy --help
run: venv/bin/nitropy --help

0 comments on commit ab45f74

Please sign in to comment.