Skip to content

Commit

Permalink
+ update ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsedar committed Dec 17, 2023
1 parent 5a456af commit 1efc4a2
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
name: ci
on: [pull_request]
on: pull_request
jobs:
qc_coding_standards:
runs-on: ubuntu-latest
code_qc:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: ["ubuntu-latest"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set Up Basic Python Env
uses: actions/setup-python@v4
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run Linter & Static Security Checks
run: make lint
python-version: ${{ matrix.python-version }}
- name: Run Linting and Code Security Checks
run: |
make lint

0 comments on commit 1efc4a2

Please sign in to comment.