Skip to content

Merge pull request #225 from olcf/versioneer #224

Merge pull request #225 from olcf/versioneer

Merge pull request #225 from olcf/versioneer #224

Workflow file for this run

---
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.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