Skip to content

Commit ac7b0f2

Browse files
committed
Name CI tasks
1 parent 229ff2b commit ac7b0f2

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/scc-linux.yml

+11-8
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@ jobs:
2121
- uses: actions/setup-python@v5
2222
with:
2323
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
24+
25+
- name: Install dependencies
26+
run: |
27+
apt install -y python3-setuptools
28+
pip install ioctl-opt libusb1 toml vdf pytest
29+
30+
- name: Build SCC
31+
run: python -m build
32+
33+
- name: Run tests
34+
run: python -m pytest tests

0 commit comments

Comments
 (0)