chore(deps): update dependency pre-commit to v4.0.1 #844
Workflow file for this run
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: Docker Image CI | |
on: [push, pull_request] | |
jobs: | |
read-only: | |
runs-on: ubuntu-24.04 | |
env: | |
# Use short project name, otherwise inspect output is messy | |
COMPOSE_PROJECT_NAME: wl | |
TEST_EXTRA_ENV: 'WEBLATE_SAML_IDP_URL: https://example.com/idp' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate configuration | |
run: ./test-generate 8080 http | |
- name: Startup container | |
run: ./test-boot | |
- name: List Python packages | |
run: ./test-pip | |
- name: Inspect container | |
run: ./test-inspect | |
- name: Check service is running | |
run: ./test-online | |
- name: Check service health status | |
run: ./test-health | |
- name: Run Django Checks | |
run: ./test-checks | |
- name: Verify supervisor | |
run: ./test-supervisor | |
- name: Test admin creation | |
run: ./test-admin | |
- name: Verify SAML certificate | |
run: ./test-saml | |
- name: Run commands | |
run: ./test-commands | |
- name: Run tests | |
run: ./test-tests | |
- name: Display logs | |
run: ./test-logs | |
if: always() | |
- name: Shutdown service | |
run: ./test-stop | |
read-write: | |
runs-on: ubuntu-24.04 | |
env: | |
# Use short project name, otherwise inspect output is messy | |
COMPOSE_PROJECT_NAME: wl | |
TEST_EXTRA_ENV: 'WEBLATE_SAML_IDP_URL: https://example.com/idp' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate configuration | |
run: ./test-generate 8080 http read-write | |
- name: Startup container | |
run: ./test-boot | |
- name: List Python packages | |
run: ./test-pip | |
- name: Inspect container | |
run: ./test-inspect | |
- name: Check service is running | |
run: ./test-online | |
- name: Check service health status | |
run: ./test-health | |
- name: Run Django Checks | |
run: ./test-checks | |
- name: Verify supervisor | |
run: ./test-supervisor | |
- name: Test admin creation | |
run: ./test-admin | |
- name: Verify SAML certificate | |
run: ./test-saml | |
- name: Run commands | |
run: ./test-commands | |
- name: Run tests | |
run: ./test-tests | |
- name: Display logs | |
run: ./test-logs | |
if: always() | |
- name: Shutdown service | |
run: ./test-stop |