diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2021-05-16 16:57:23 +0200 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2021-05-16 16:57:23 +0200 |
commit | 33a6e5c8d4d743781c7236b170020603ac913a4c (patch) | |
tree | 71a1ad8cdc974e353add26b236b6f0dade01c059 /.github | |
parent | Fix fat-fingered copy. (diff) | |
download | freestyle-hid-33a6e5c8d4d743781c7236b170020603ac913a4c.tar freestyle-hid-33a6e5c8d4d743781c7236b170020603ac913a4c.tar.gz freestyle-hid-33a6e5c8d4d743781c7236b170020603ac913a4c.tar.bz2 freestyle-hid-33a6e5c8d4d743781c7236b170020603ac913a4c.tar.lz freestyle-hid-33a6e5c8d4d743781c7236b170020603ac913a4c.tar.xz freestyle-hid-33a6e5c8d4d743781c7236b170020603ac913a4c.tar.zst freestyle-hid-33a6e5c8d4d743781c7236b170020603ac913a4c.zip |
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/pytest.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 0000000..abf2178 --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,31 @@ +# SPDX-FileCopyrightText: 2021 The freestyle-hid Authors +# +# SPDX-License-Identifier: 0BSD + +name: pytest + +on: + push: + pull_request: + +jobs: + test: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + python-version: [3.7, 3.8, 3.9] + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + pip install .[dev,tools] + - name: Test with pytest + run: | + pytest -vvv --mypy |