Skip to content

Commit

Permalink
CI: use GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dulmandakh committed Jul 9, 2024
1 parent 4627315 commit 5d298a0
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 27 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- '2.7'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
cache-dependency-path: 'setup.oy'
- run: pip install -e .[test]
- run: py.test --cov=promise tests
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

0 comments on commit 5d298a0

Please sign in to comment.