Skip to content

Commit

Permalink
merge tests in one file
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharth9820 committed Oct 16, 2023
1 parent 19fea9e commit 66fb349
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 32 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/formatting-tests.yaml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/nvidia-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,32 @@ on:
pull_request:
branches: [ develop ]


jobs:
formatting:
runs-on: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
- name: Update black
run: |
pip install --upgrade black
- name: Lint and Format Check with flake8 and black
run: |
black --diff --check .
flake8
inter-layer:
needs: formatting
runs-on: [ nvidia ]
Expand Down

0 comments on commit 66fb349

Please sign in to comment.