Skip to content

Commit

Permalink
Merge pull request #29 from remerge/migrate-ci-to-github-actions
Browse files Browse the repository at this point in the history
Migrate ci to GitHub actions
  • Loading branch information
alexmorten authored Mar 4, 2024
2 parents 0f4b20f + 59353b9 commit ac7835f
Show file tree
Hide file tree
Showing 4 changed files with 331 additions and 165 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: linting


on:
push

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.7

- name: Install dependencies
run: cd lib && pip install -U pip && pip install -e .[dev]

- name: Run flake8
run: python -m flake8 lib/
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit ac7835f

Please sign in to comment.