Skip to content

Commit

Permalink
Create requirementsTest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chekoduadarsh authored Apr 20, 2022
1 parent 9ce632f commit 19e18dd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/requirementsTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: RequirementsTest

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt

0 comments on commit 19e18dd

Please sign in to comment.