We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6589d26 commit c2bb635Copy full SHA for c2bb635
1 file changed
.github/workflows/test.yml
@@ -74,12 +74,18 @@ jobs:
74
- name: Install PCSC development libraries
75
run: |
76
sudo apt-get update
77
- sudo apt-get install -y libpcsclite-dev swig
+ sudo apt-get install -y pcscd
78
+ sudo systemctl enable pcscd
79
+ - name: Set up Python
80
+ uses: actions/setup-python@v6
81
+ with:
82
+ python-version: '3.11'
83
- name: Test
84
85
python3 -m venv emulator_env
86
source emulator_env/bin/activate
- pip install -r coinkite/coinkite-tap-proto/emulator/requirements.txt
87
+ pip install -U pip wheel 'setuptools<65.5.0'
88
+ pip install --no-build-isolation -r coinkite/coinkite-tap-proto/emulator/requirements.txt
89
cargo test -p rust-cktap --features emulator
90
91
rust_fmt:
0 commit comments