Skip to content

Update CI dependencies (major) #536

Update CI dependencies (major)

Update CI dependencies (major) #536

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- v2
pull_request:
env:
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}
jobs:
main:
name: Continuous integration
runs-on: ubuntu-24.04
timeout-minutes: 20
if: "!startsWith(github.event.head_commit.message, '[skip ci] ')"
steps:
- name: GitHub event
run: echo ${GITHUB_EVENT} | python3 -m json.tool
env:
GITHUB_EVENT: ${{ toJSON(github) }}
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Test
run: ./tests.py
env:
CI_GPG_PRIVATE_KEY: ${{secrets.CI_GPG_PRIVATE_KEY}}
GOPASS_CI_GITHUB_TOKEN: ${{secrets.GOPASS_CI_GITHUB_TOKEN}}
PATTERNS: docker npm pypi transifex
if: env.HAS_SECRETS == 'HAS_SECRETS'
- run: gopass show "gs/ci/test-mask"
if: env.HAS_SECRETS == 'HAS_SECRETS'
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: python3 -m pip install --requirement=ci/requirements.txt
- uses: actions/cache@v4
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
- run: git diff --exit-code --patch > /tmp/pre-commit.patch || true
if: failure()
- uses: actions/upload-artifact@v4
with:
name: Apply pre-commit fix.patch
path: /tmp/pre-commit.patch
retention-days: 1
if: failure()
- name: Print environment information
run: c2cciutils-env