Skip to content

Snyk auto fix

Snyk auto fix #2828

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- master
- '[0-9]+.[0-9]+'
tags:
- '*'
pull_request:
env:
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}
jobs:
main:
runs-on: ubuntu-22.04
name: Continuous integration
timeout-minutes: 10
if: "!startsWith(github.event.head_commit.message, '[skip ci] ')"
steps:
- run: docker system prune --all --force
- uses: actions/checkout@v3
- uses: camptocamp/initialise-gopass-summon-action@v2
with:
ci-gpg-private-key: ${{secrets.CI_GPG_PRIVATE_KEY}}
github-gopass-ci-token: ${{secrets.GOPASS_CI_GITHUB_TOKEN}}
patterns: pypi
if: env.HAS_SECRETS == 'HAS_SECRETS'
- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- run: python3 -m pip install --user --requirement=ci/requirements.txt
- uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: "pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}\npre-commit-"
- run: pre-commit run --all-files
env:
SKIP: poetry-lock
- run: git diff && false
if: failure()
- name: Checks
run: c2cciutils-checks
- name: Applications checks
run: make checks
- name: Logs
run: c2cciutils-docker-logs
if: always()
- name: Publish
run: c2cciutils-publish
if: |
env.HAS_SECRETS == 'HAS_SECRETS'
&& github.event_name == 'push'
&& ( github.ref_type == 'tag' || github.ref_name == 'master' )