Skip to content

Commit 2be5202

Browse files
committed
Test install
1 parent 8c8014f commit 2be5202

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.github/workflows/install.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Install
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
build:
9+
runs-on: ${{ matrix.os }}
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
os: [ubuntu-latest]
14+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
15+
include:
16+
- os: ubuntu-latest
17+
python-version: "3.7"
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Set up Python ${{ matrix.python-version }}
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
26+
- name: Install python-evdev
27+
run: |
28+
python -m pip install -v .
29+
python -c "import evdev.ecodes; print(evdev.ecodes)"

requirements-dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ sphinx-copybutton ~= 0.5.0
44
bump2version
55
sphinx_rtd_theme
66
twine
7+
ruff

0 commit comments

Comments
 (0)