summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
Commit message (Collapse)AuthorAgeFilesLines
* Refactor test action for reusabilityJames Socol2022-12-041-13/+15
| | | | | Pulls the test details into a discrete action that can be reused for the release workflow.
* Add periodic CI runJames Socol2022-12-031-1/+3
| | | | | Run the tests and linter weekly to make sure the latest patch versions of Python and linter updates don't cause any issues.
* Fix linting in CI for realJames Socol2022-11-051-1/+1
| | | | | This is what I get for enabling auto-merge before making lint a required status check.
* Lint in CIJames Socol2022-11-051-0/+9
| | | | Add the flake8 step back to the CI config in actions.
* Rebase and condense againJames Socol2022-11-051-1/+3
|
* Have actions test on Python 3.10 and 3.11James Socol2022-11-051-1/+1
| | | | These tests will fail for now, but will get me set up to fix the issues.
* Use different names for different workflowsJames Socol2022-11-051-1/+1
|
* Split out CI(push) from PR(pull_request) actionsJames Socol2022-11-051-0/+21
This way we don't run everything twice on a PR. And drops the old Travis-CI config because, yeah.