[1.28] Backport add systemd delegate config if cpuset is missing (#4503) #2537
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: | |
- pull_request | |
jobs: | |
check-unit-tests: | |
name: Check Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3.3.0 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install tox --fix-missing | |
sudo pip3 install -U pytest==7.1.3 sh==1.14.3 | |
- name: Check Units | |
run: | | |
tox -e scripts | |
tox -e wrappers | |
tox -e cluster | |
- name: Verify branches | |
run: | | |
pytest -s ./tests/verify-branches.py |