Skip to content

build(deps): bump github/codeql-action from 3.28.0 to 3.28.2 #1491

build(deps): bump github/codeql-action from 3.28.0 to 3.28.2

build(deps): bump github/codeql-action from 3.28.0 to 3.28.2 #1491

Workflow file for this run

name: Tests and Lint
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-versions: [ "3.12" ]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Check if any local image is used in docker-compose.yml
run: |
if [[ "$(egrep -w 'image:\s+repository-service-tuf-api|image:\s+repository-service-tuf-worker' docker-compose.yml -c)" -ne "0" ]]; then echo "Local image has been used in docker-compose.yml" && exit 1; fi
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
with:
python-version: ${{ matrix.python-versions }}
- name: Install tox and coverage
run: pip install tox tox-gh-actions
- name: Run Python tests
run: tox
- name: Codecov
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2
with:
files: coverage.xml
fail_ci_if_error: false
verbose: true