From 4111470f352e4dba11caff701920d4551bf52de9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Sun, 16 May 2021 23:34:40 +0100 Subject: CI: Replace Travis CI with GitHub Actions. --- .github/workflows/pytest.yml | 32 ++++++++++++++++++++++++++++++++ .mergify.yml | 8 ++++++-- .travis.yml | 27 --------------------------- README.md | 1 - 4 files changed, 38 insertions(+), 30 deletions(-) create mode 100644 .github/workflows/pytest.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 0000000..ecb7223 --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,32 @@ +# SPDX-FileCopyrightText: 2021 The glucometerutils Authors +# +# SPDX-License-Identifier: 0BSD + +name: pytest + +on: + push: + pull_request: + +jobs: + pytest: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-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: | + sudo apt install libusb-1.0-0-dev libudev-dev + pip install .[all] + - name: Test with pytest + run: | + pytest -vvv --mypy diff --git a/.mergify.yml b/.mergify.yml index 63dd7c8..e7c5b35 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -6,7 +6,9 @@ pull_request_rules: - name: Automatic merge on approval conditions: - "#approved-reviews-by>=1" - - "status-success=Travis CI - Pull Request" + - "status-success=pytest (ubuntu-latest, 3.7)" + - "status-success=pytest (ubuntu-latest, 3.8)" + - "status-success=pytest (ubuntu-latest, 3.9)" - "status-success=pre-commit" actions: merge: @@ -14,7 +16,9 @@ pull_request_rules: - name: Automatic merge from Flameeyes conditions: - "author=Flameeyes" - - "status-success=Travis CI - Pull Request" + - "status-success=pytest (ubuntu-latest, 3.7)" + - "status-success=pytest (ubuntu-latest, 3.8)" + - "status-success=pytest (ubuntu-latest, 3.9)" - "status-success=pre-commit" actions: merge: diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index f96b6ff..0000000 --- a/.travis.yml +++ /dev/null @@ -1,27 +0,0 @@ -# SPDX-FileCopyrightText: 2013 The glucometerutils Authors -# -# SPDX-License-Identifier: MIT - -dist: xenial - -language: python - -matrix: - include: - - python: 3.7 - - python: 3.8 - - python: 3.9 - env: PYTEST_OPTIONS="--mypy" - - python: 3.10-dev - -install: - - pip install .[all] - -addons: - apt: - packages: - - libusb-1.0-0-dev - - libudev-dev - -script: - - pytest $PYTEST_OPTIONS glucometerutils diff --git a/README.md b/README.md index bff6b7b..27a6b47 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ SPDX-License-Identifier: MIT -->

-build status GitHub Code style: black

-- cgit v1.2.3