Skip to content

Commit

Permalink
test codeql (#1655)
Browse files Browse the repository at this point in the history
  • Loading branch information
janiversen authored Jul 14, 2023
1 parent e3426af commit 5a9f083
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ jobs:
integreation_test:
name: pytest - ${{ matrix.os.on }} - ${{ matrix.python.version }}
runs-on: ${{ matrix.os.on }}
needs: linters
timeout-minutes: 10
strategy:
fail-fast: false
Expand Down Expand Up @@ -97,10 +96,27 @@ jobs:
- name: pytest
run: pytest --cov=pymodbus --cov=test --cov-report=term-missing --cov-report=xml -v --full-trace --timeout=20

analyze:
name: Analyze Python
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3

- uses: github/codeql-action/init@v2
with:
languages: python

- uses: github/codeql-action/autobuild@v2

- uses: github/codeql-action/analyze@v2

ci_complete:
name: ci_complete
runs-on: ubuntu-latest
needs:
- linters
- analyze
- integreation_test
timeout-minutes: 1
steps:
Expand Down

0 comments on commit 5a9f083

Please sign in to comment.