Skip to content

Commit

Permalink
feat: Add default pylintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
navasvarela committed Sep 10, 2024
1 parent 9a2d804 commit 661a21e
Show file tree
Hide file tree
Showing 8 changed files with 704 additions and 9 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/nada-dsl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Nada DSL

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . .'[test]'
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# TODO: Disable linting until it is fixed.
# - name: Lint with pylint
# run: |
# pylint nada_dsl/
- name: Test with pytest
run: |
pytest
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ docs/_build
dist/

nada_dsl/version.py

*.log
*.out
Loading

0 comments on commit 661a21e

Please sign in to comment.