Skip to content

Iteration on SMP to better scale by size of software project #520

Iteration on SMP to better scale by size of software project

Iteration on SMP to better scale by size of software project #520

Workflow file for this run

---
name: Run tests
on:
push:
branches:
- master
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: pip
cache-dependency-path: .github/workflows/requirements.txt
- name: Install xmllint
run: |
sudo apt install --yes libxml2-utils
xmllint --version
- name: Install requirements
run: pip install -r .github/workflows/requirements.txt
- name: Run tests
run: pytest