Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheStoneMX committed May 31, 2024
1 parent f4f0c4a commit fe3d86a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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 with Python black
run: |
make format

0 comments on commit fe3d86a

Please sign in to comment.