We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6589d26 commit 9908219Copy full SHA for 9908219
.github/workflows/test.yml
@@ -73,12 +73,16 @@ jobs:
73
run: cp Cargo.toml.MSRV Cargo.toml
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 update -y
+ sudo apt-get install -y swig libpcsclite-dev
78
+ - name: Set up Python
79
+ uses: actions/setup-python@v6
80
+ with:
81
+ python-version: '3.12'
82
- name: Test
83
- python3 -m venv emulator_env
- source emulator_env/bin/activate
84
+ cd ${{ github.workspace }}
85
+ pip install -U pip wheel
86
pip install -r coinkite/coinkite-tap-proto/emulator/requirements.txt
87
cargo test -p rust-cktap --features emulator
88
0 commit comments