Bump urllib3 from 1.26.16 to 1.26.17 (#76) #135
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup CI | |
uses: lava-nc/ci-setup-composite-action@v1.1 | |
with: | |
repository: 'Lava-DNF' | |
- name: Run flakeheaven (flake8) | |
run: poetry run flakeheaven lint src/lava tests/ | |
security-lint: | |
name: Security Lint Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup CI | |
uses: lava-nc/ci-setup-composite-action@v1.1 | |
with: | |
repository: 'Lava-DNF' | |
- name: Run bandit | |
uses: tj-actions/bandit@v5.1 | |
with: | |
targets: | | |
src/lava/. | |
options: "-r --format custom --msg-template '{abspath}:{line}: {test_id}[bandit]: {severity}: {msg}'" | |
unit-tests: | |
name: Unit Test Code + Coverage | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Setup CI | |
uses: lava-nc/ci-setup-composite-action@v1.1 | |
with: | |
repository: 'Lava-DNF' | |
- name: Run unit tests | |
run: poetry run pytest |