Skip to content

Commit

Permalink
Merge pull request #28 from eXamadeus/ci/github-actions
Browse files Browse the repository at this point in the history
ci: Move to GitHub Actions
  • Loading branch information
eXamadeus authored Sep 19, 2023
2 parents 73895b9 + 4230d45 commit cff0223
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,36 @@
name: Pull Request CI
on: [push]
on: [ push ]

jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Black
uses: microsoft/action-python@0.7.0
with:
workdir: .
black: true
- name: Flake8
uses: microsoft/action-python@0.7.0
with:
workdir: .
flake8: true

pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.8
- 3.9
- 3.10
- 3.11
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Pytest
uses: microsoft/action-python@0.7.0
with:
workdir: .
testing: true
python_version: ${{ matrix.python-version }}
python_version: ${{ matrix.python-version }}
2 changes: 0 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

.. |downloads| image:: https://img.shields.io/pypi/dm/godaddypy.svg
:target: https://pypi.python.org/pypi/godaddypy
.. |travis| image:: https://travis-ci.org/eXamadeus/godaddypy.svg?branch=master
:target: https://travis-ci.org/eXamadeus/godaddypy
.. |climate| image:: https://codeclimate.com/github/eXamadeus/godaddypy/badges/gpa.svg
:target: https://codeclimate.com/github/eXamadeus/godaddypy

Expand Down

0 comments on commit cff0223

Please sign in to comment.