Skip to content

Commit

Permalink
ci: add integration test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
abn committed Apr 23, 2020
1 parent 37b2a6c commit 127a32c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Integration

on: [push, pull_request]

jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install tox
shell: bash
run: pip install --upgrade tox

- name: Execute integration tests
shell: bash
run: tox -e integration

0 comments on commit 127a32c

Please sign in to comment.