Skip to content

Try to fix the password generation functions hanging #4

Try to fix the password generation functions hanging

Try to fix the password generation functions hanging #4

Workflow file for this run

name: Test scripts and Docker Compose
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set TERM environment variable
run: echo "TERM=xterm" >> $GITHUB_ENV
- name: Test submodule patches script
run: ./scripts/setup-submodule-patches.sh
- name: Test environment setup script
run: ./scripts/setup-environment.sh 1.1.1.1 2.2.2.2
- name: Upload environment setup script logs
uses: actions/upload-artifact@v4
with:
name: environment-setup
path: ./environment/
- name: Validate Docker Compose file
run: docker compose config
- name: Pull Docker images
run: docker compose pull
- name: Build Docker images
run: docker compose build