Skip to content

Commit

Permalink
Add linter job
Browse files Browse the repository at this point in the history
  • Loading branch information
valentimarco committed Jun 3, 2024
1 parent 384eda8 commit 198b8ba
Showing 1 changed file with 7 additions and 23 deletions.
30 changes: 7 additions & 23 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,14 @@ on:
branches: [main, develop]

jobs:
# pylint:
# name: "Coding Standards"
# runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: ./core
# strategy:
# matrix:
# python-version: ["3.10"]
# steps:
# - name: Download
# uses: actions/checkout@v3
# - name: Prepare Python
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# cache: 'pip'
# cache-dependency-path: pyproject.toml
# - name: Download python dependencies
# run: pip install .[dev]
# - name: Pylint
# run: pylint -f actions ./
linter:
name: "Run linter"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
test:
# needs: [ pylint ]
needs: [ linter ]
name: "Run Tests"
runs-on: 'ubuntu-latest'
steps:
Expand Down

0 comments on commit 198b8ba

Please sign in to comment.