Skip to content

Commit

Permalink
Fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed Sep 3, 2024
1 parent 836b47c commit 2ab3e40
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,19 @@ name: Linting
on: [push, pull_request]

jobs:
lintPython:
build:

runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: '3.9'
- name: Update package index
run: sudo apt-get update
- name: Run Linter
run: |
run: |
pip install -e .[test]
ruff check .
lintYaml:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
config_data: "{extends: default, rules: {line-length: disable}}"

0 comments on commit 2ab3e40

Please sign in to comment.