Fix translation link #788
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: | |
push: | |
branches: | |
- 4.x #CraftCMS v4 | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
tests-php-80: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set the value | |
id: step_one | |
run: | | |
echo "PHP_VERSION=8.0" >> $GITHUB_ENV | |
- name: Build containers | |
run: make up | |
- name: Composer install | |
run: make composer-install | |
- name: Tests | |
run: make test | |
tests-php-80-mysql-80: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set the value | |
id: step_one | |
run: | | |
echo "PHP_VERSION=8.0" >> $GITHUB_ENV | |
echo "MYSQL_VERSION=8.0" >> $GITHUB_ENV | |
- name: Build containers | |
run: make up | |
- name: Composer install | |
run: make composer-install | |
- name: Tests | |
run: make test | |
tests-php-81: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set the value | |
run: | | |
echo "PHP_VERSION=8.1" >> $GITHUB_ENV | |
- name: Build containers | |
run: make up | |
- name: Composer install | |
run: make composer-install | |
- name: Quality | |
run: make quality | |
- name: Use the Upload Artifact GitHub Action | |
uses: actions/upload-artifact@v2 | |
with: | |
name: assets-for-download | |
path: composer.lock | |
- name: Tests | |
run: make tests-with-coverage | |
- name: Codecov | |
uses: codecov/[email protected] | |
with: | |
files: ./tests/_output/coverage-integration.xml | |
- name: Codecov | |
uses: codecov/[email protected] | |
with: | |
files: ./tests/_output/coverage-functional.xml | |
- name: Codecov | |
uses: codecov/[email protected] | |
with: | |
files: ./tests/_output/coverage-unit.xml |