Skip to content

Commit

Permalink
re-introduce CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
honzajavorek committed Jun 14, 2024
1 parent e2f07d7 commit 2ead602
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 14 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: test

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"

- name: Install
run: pip install -e .[tests]

- name: Test
run: pytest
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

0 comments on commit 2ead602

Please sign in to comment.