summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-12-17 20:57:29 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2020-12-17 20:57:29 +0100
commit935b32e5f4d15046036f9366a17f21929dc5bc82 (patch)
treea5fb0853ff1df6e881242f4e81cbd0b02cf547b2
parent9b23cf58a16fd4d7dad0cf94ff89f2e8a21540d8 (diff)
downloadpsutil-935b32e5f4d15046036f9366a17f21929dc5bc82.tar.gz
skip-appveyor
Signed-off-by: Giampaolo Rodola <g.rodola@gmail.com>
-rw-r--r--.github/workflows/ci.yml32
1 files changed, 26 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b302dd88..6cfb1058 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -12,21 +12,41 @@
on: [push]
name: Build
jobs:
- linters:
- name: Linters
+ linux:
+ name: Linux
runs-on: ubuntu-latest
strategy:
matrix:
- # in this example, there is a newer version already installed, 3.7.7, so the older version will be downloaded
- python-version: [2.7, 3.8]
+ python-version: [2.7, 3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
run: |
- python -m pip install flake8
- make lint
+ make install
+ make test
+
+ # linters:
+ # name: Linters
+ # runs-on: ubuntu-latest
+ # strategy:
+ # matrix:
+ # python-version: [2.7, 3.8]
+ # steps:
+ # - uses: actions/checkout@v2
+ # - uses: actions/setup-python@v2
+ # with:
+ # python-version: ${{ matrix.python-version }}
+ # run: |
+ # python -m pip install flake8
+ # make lint
+
+
+
+
+
+
# linux-macos-win:
# name: ${{ matrix.os }}