Skip to content

Commit

Permalink
Test install
Browse files Browse the repository at this point in the history
  • Loading branch information
gvalkov committed Feb 18, 2024
1 parent 8c8014f commit 4997053
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/install.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Install

on:
- push
- pull_request

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- os: ubuntu-latest
python-version: "3.7"

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install python-evdev
run: |
python -m pip install .
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ sphinx-copybutton ~= 0.5.0
bump2version
sphinx_rtd_theme
twine
ruff

0 comments on commit 4997053

Please sign in to comment.