Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ChinSekYi committed Jul 1, 2024
2 parents a29d4a6 + 6bb51be commit e343baf
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/testing-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Python application test with Github Actions

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
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
run: |
make format

0 comments on commit e343baf

Please sign in to comment.