Added cf-php-fpm systemd service unit template for http2 enablement in Mission Portal #1521
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: Continuous Integration | |
on: | |
# run this workflow on pull_request activity | |
# this includes opening and pushing more commits | |
pull_request: | |
branches: [ master, 3.24.x, 3.21.x ] | |
jobs: | |
unit_tests: | |
uses: ./.github/workflows/unit_tests.yml | |
shellcheck_tests: | |
uses: ./.github/workflows/shellcheck.yml | |
asan_unit_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/asan_unit_tests.yml | |
acceptance_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/acceptance_tests.yml | |
windows_acceptance_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/windows_acceptance_tests.yml | |
macos_unit_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/macos_unit_tests.yml | |
valgrind_tests: | |
needs: unit_tests | |
uses: ./.github/workflows/valgrind.yml | |
static_check: | |
needs: unit_tests | |
uses: ./.github/workflows/job-static-check.yml | |
valgrind_check: | |
needs: unit_tests | |
uses: ./.github/workflows/job-valgrind-check.yml |