summaryrefslogtreecommitdiff
path: root/.github/workflows/ci-macos.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci-macos.yml')
-rw-r--r--.github/workflows/ci-macos.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml
deleted file mode 100644
index 384bbe6..0000000
--- a/.github/workflows/ci-macos.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: Build/test on MacOS
-# This workflow is triggered on pushes to the repository.
-on: [push, pull_request]
-
-jobs:
- test:
- runs-on: macOS-latest
- strategy:
- matrix:
- py: [
- '2.7',
- '3.5',
- '3.6',
- '3.7',
- '3.8',
- 'pypy2',
- 'pypy3'
- ]
- architecture: ['x64']
- name: "Python: ${{ matrix.py }}"
- steps:
- - uses: actions/checkout@master
- - name: Setup python
- uses: actions/setup-python@v1
- with:
- python-version: ${{ matrix.py }}
- architecture: ${{ matrix.architecture }}
- - run: pip install tox
- - name: Running tox
- run: |
- ulimit -n 4096
- tox -e py