Skip to content

Commit

Permalink
Update testing-ci.yml
Browse files Browse the repository at this point in the history
Added actions for CI
  • Loading branch information
urwithajit9 authored Feb 15, 2024
1 parent 8b156e0 commit 101bebd
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .github/workflows/testing-ci.yml
Original file line number Diff line number Diff line change
@@ -1 +1,26 @@
n
name: Test Multiple Python Versions
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- 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 101bebd

Please sign in to comment.