Skip to content

Commit

Permalink
merge workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
fcurella committed Dec 14, 2020
1 parent c72b094 commit 9f67c4f
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 45 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/test-32bit.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/test-alpine.yml

This file was deleted.

38 changes: 37 additions & 1 deletion .github/workflows/test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Python Tests
on: [push, pull_request]

jobs:
test:
test_ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -24,3 +24,39 @@ jobs:
run: coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

test_alpine:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install tox
- name: Run tests
run: tox
env:
TOXENV: alpine
TEST_ALPINE: 1

test_32bit:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install tox
- name: Run tests
run: tox
env:
TOXENV: 32bit
TEST_32BIT: 1

0 comments on commit 9f67c4f

Please sign in to comment.