Skip to content

Commit

Permalink
Combine test and lint jobs into one workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
HarlemSquirrel committed Nov 2, 2023
1 parent 22cfbee commit b1811dc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 23 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/pylint.yml

This file was deleted.

15 changes: 14 additions & 1 deletion .github/workflows/pytest.yml → .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: pytest
name: pylint

on:
pull_request:
Expand All @@ -7,6 +7,19 @@ on:
- main

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3'
- name: Install Dependencies
run: |
pip install -r requirements.txt -r requirements_test.txt
- name: Run pylint
run: pylint libpyvivotek
test:
strategy:
fail-fast: false
Expand Down

0 comments on commit b1811dc

Please sign in to comment.