build(deps): update dependency requests to v2.32.2 [security] (main) … #6
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: TICS | |
on: | |
push: | |
branches: | |
- main | |
# to easy test changes to the workflow | |
- tiobe | |
jobs: | |
CI: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
echo "::group::apt-get update" | |
sudo apt-get update | |
echo "::endgroup::" | |
echo "::group::apt-get install..." | |
sudo apt-get install -y python3 python3-dev libapt-pkg-dev libyaml-dev xdelta3 patchelf | |
echo "::endgroup::" | |
echo "::group::pip install" | |
python -m pip install 'tox<5.0' tox-gh | |
echo "::endgroup::" | |
- name: Setup Tox environment | |
run: tox --workdir /tmp/tox run-parallel --parallel auto --parallel-no-spinner --parallel-live --colored yes -e test-all-py310 --notest | |
- name: Test with tox | |
run: tox --workdir /tmp/tox run --skip-pkg-install --result-json results/tox-py310.json --colored yes -e test-all-py310 | |
- name: Run TICS analysis | |
uses: tiobe/tics-github-action@v3 | |
env: | |
PATH: "/tmp/tox/test-all-py310/bin:/snap/bin:/home/runner/.local/bin:/home/runner/.cargo/bin:/bin:/usr/bin:/usr/local/bin:" | |
with: | |
mode: qserver | |
project: snapcraft | |
viewerUrl: https://canonical.tiobe.com/tiobeweb/TICS/api/cfg?name=default | |
branchdir: ${{ github.workspace }} | |
ticsAuthToken: ${{ secrets.TICSAUTHTOKEN }} | |
installTics: true |