summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2020-11-04 16:20:42 -0800
committerAnthony Sottile <asottile@umich.edu>2020-11-05 09:05:46 -0800
commita6e25e1f84220dccd984f7190a1e54806e009230 (patch)
treea966043d0ff0cc46a1ffa412fe9cc44d19616510 /.github
parenta35d409e24d8b94e6a5b504acc659fdbcf862513 (diff)
downloadpep8-a6e25e1f84220dccd984f7190a1e54806e009230.tar.gz
use github actions instead of travis-ci
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml56
1 files changed, 56 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..29f1bd3
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,56 @@
+name: main
+on:
+ pull_request:
+ push:
+ branches: [master, 'test-me-*']
+ tags: ['*']
+
+jobs:
+ main:
+ strategy:
+ matrix:
+ include:
+ - os: windows-latest
+ py: 2.7
+ toxenv: py
+ - os: windows-latest
+ py: 3.9
+ toxenv: py
+ - os: ubuntu-latest
+ py: pypy2
+ toxenv: py
+ - os: ubuntu-latest
+ py: pypy3
+ toxenv: py
+ - os: ubuntu-latest
+ py: 2.7
+ toxenv: py
+ - os: ubuntu-latest
+ py: 3.4
+ toxenv: py
+ - os: ubuntu-latest
+ py: 3.5
+ toxenv: py
+ - os: ubuntu-latest
+ py: 3.6
+ toxenv: py
+ - os: ubuntu-latest
+ py: 3.7
+ toxenv: py
+ - os: ubuntu-latest
+ py: 3.8
+ toxenv: py
+ - os: ubuntu-latest
+ py: 3.9
+ toxenv: py
+ - os: ubuntu-latest
+ py: 3.9
+ toxenv: flake8
+ runs-on: ${{ matrix.os }}
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.py }}
+ - run: pip install tox
+ - run: tox -e ${{ matrix.toxenv }}