Skip to content

Commit

Permalink
Merge pull request #75 from mjhea0/updates
Browse files Browse the repository at this point in the history
updates
  • Loading branch information
mjhea0 authored Jun 3, 2022
2 parents c317391 + 44f0735 commit 23e9e84
Show file tree
Hide file tree
Showing 13 changed files with 132 additions and 102 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint
run: |
flake8 --exclude env --ignore E402,E501 .
black --exclude=env --check .
- name: Test with pytest
run: |
python -m pytest
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Michael Herman
Copyright (c) 2022 Michael Herman

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit 23e9e84

Please sign in to comment.