Skip to content

Commit

Permalink
Using the virtualenv py3 leads to a seg fault, but system py3 works...
Browse files Browse the repository at this point in the history
  • Loading branch information
sz3 committed Dec 1, 2020
1 parent 09f1690 commit b92df09
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,27 @@
name: ci
on: [push, pull_request]
jobs:
testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: pip install -U pip coveralls
- name: build native code
run: make build
- name: Run tests!
run: |
ulimit -c unlimited
/usr/bin/python3 -m unittest discover -s tests/
- name: Log coverage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: coveralls

0 comments on commit b92df09

Please sign in to comment.