From bed9883369b9468829c2ad695b965e22a6491e6d Mon Sep 17 00:00:00 2001 From: Valery Maslov Date: Sun, 24 Dec 2023 20:13:57 +0300 Subject: [PATCH] Create frankenphp.yml --- .github/workflows/frankenphp.yml | 70 ++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 .github/workflows/frankenphp.yml diff --git a/.github/workflows/frankenphp.yml b/.github/workflows/frankenphp.yml new file mode 100644 index 00000000..35d2b19c --- /dev/null +++ b/.github/workflows/frankenphp.yml @@ -0,0 +1,70 @@ +name: FrankenPHP + +on: + push: + branches: + - master + - 2.x + - docker + pull_request: ~ + workflow_dispatch: ~ + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v4 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Build Docker images + uses: docker/bake-action@v4 + with: + pull: true + load: true + files: | + compose.yaml + compose.override.yaml + set: | + *.cache-from=type=gha,scope=${{github.ref}} + *.cache-from=type=gha,scope=refs/heads/main + *.cache-to=type=gha,scope=${{github.ref}},mode=max + - + name: Start services + run: docker compose up --wait --no-build + - + name: Check HTTP reachability + run: curl -v -o /dev/null http://localhost + - + name: Check HTTPS reachability + run: curl -vk -o /dev/null https://localhost + - + name: Create test database + run: docker compose exec -T php bin/console -e test doctrine:database:create + - + name: Install the app + run: docker compose exec -T php bin/console -e test app:install + - + name: Run PHPUnit + run: docker compose exec -T php bin/phpunit + - + name: Doctrine Schema Validator + run: docker compose exec -T php bin/console -e test doctrine:schema:validate + lint: + name: Docker Lint + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v4 + - + name: Lint Dockerfile + uses: hadolint/hadolint-action@v3.1.0