Skip to content

Commit

Permalink
tests: Switch from Travis CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienverge committed Jun 11, 2024
1 parent d4542da commit 84bea24
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 16 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---

name: Tests

on:
push:
pull_request:
branches:
- master

permissions:
contents: read

jobs:
lint:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- run: pip install flake8 flake8-import-order
- run: flake8 .
- run: python -m unittest discover tests
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit 84bea24

Please sign in to comment.