v2.0.1 #36
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: easy-log-bundle | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build the docker images | |
run: make build | |
- name: Start the docker images | |
run: make start | |
- name: Check running containers | |
run: docker ps -a | |
- name: Test bundle with Symfony 4 | |
run: make test-using-symfony-4 | |
- name: Display information | |
run: make info | |
- name: Test bundle with Symfony 5 | |
run: make test-using-symfony-5 | |
- name: Test bundle with Symfony 6 | |
run: make test-using-symfony-6 | |
- name: Display information | |
run: make info | |
- name: Stop the docker images | |
run: make stop |