We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 229ff2b commit ac7b0f2Copy full SHA for ac7b0f2
.github/workflows/scc-linux.yml
@@ -21,11 +21,14 @@ jobs:
21
- uses: actions/setup-python@v5
22
with:
23
python-version: '3.13'
24
- # Install dependencies
25
- - run: |
26
- apt install -y python3-setuptools
27
- pip install ioctl-opt libusb1 toml vdf pytest
28
- # Build
29
- - run: python -m build
30
- # Test
31
- - run: python -m pytest tests
+
+ - name: Install dependencies
+ run: |
+ apt install -y python3-setuptools
+ pip install ioctl-opt libusb1 toml vdf pytest
+ - name: Build SCC
+ run: python -m build
32
33
+ - name: Run tests
34
+ run: python -m pytest tests
0 commit comments