DSO-2027: Migrate lep to ECR public repo #26
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: 🧪 Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: | |
- ubuntu-latest | |
defaults: | |
run: | |
shell: bash -leo pipefail {0} | |
strategy: | |
matrix: | |
php_versions: | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
steps: | |
- name: 💻 Check out current proejct revision | |
uses: actions/checkout@v4 | |
- name: 🐋 Build docker file | |
run: docker build . | |
--build-arg PHP_VERSION="${{ matrix.php_versions }}" | |
--tag public.ecr.aws/f1n0z7a8/lep:"${{ matrix.php_versions }}" |