bump ruamel.yaml.clib #216
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Unit Tests | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.8, 3.9, 3.10,3.12] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get install opensc | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
cd test/pki | |
./generatepki.sh | |
cd ../../ | |
ls test/pki/ca | |
ls test/pki/intermediate | |
- name: Test with pytest | |
run: python -m unittest discover -b |