Skip to content

Commit

Permalink
Replace travis with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelometal committed Oct 6, 2023
1 parent 5b0e2a2 commit 8854659
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 11 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: unittests
on:
push:
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
id: setup-python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make setup
- name: Test
run: make coverage
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit 8854659

Please sign in to comment.