Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ursera

adding git actions
  • Loading branch information
urwithajit9 committed Feb 15, 2024
2 parents 1ac768e + 093df51 commit 0384c53
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/testing-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Python application test with Github Action
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
make install
- name: Lint with pylint
run: |
make lint
- name: Test with pytest
run: |
make test
- name: Format code with Python Black
run: |
make format

0 comments on commit 0384c53

Please sign in to comment.