Bump actions/upload-artifact from 4.3.0 to 4.3.1 #92
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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
# Prevent forks from running this to be nice | |
if: github.repository_owner == 'SwedbankPay' | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch all history for all tags and branches | |
run: git fetch --prune --unshallow | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
versionSpec: '5.x' | |
- name: Execute GitVersion | |
id: gitversion # step id used as reference for output values | |
uses: gittools/actions/gitversion/[email protected] | |
- name: Version label for unstable builds | |
id: unstable | |
if: startsWith(github.ref, 'refs/tags/') != true | |
run: | | |
LABEL="-dev" | |
echo "Pre-release: ${LABEL}" | |
echo "##[set-output name=label;]${LABEL}" | |
- name: Composer version | |
id: composer-version | |
run: | | |
COMPOSER_VERSION="${{ steps.gitversion.outputs.majorMinorPatch }}${{ steps.unstable.outputs.label }}" | |
echo "Composer version: ${COMPOSER_VERSION}" | |
echo "::set-output name=version::${COMPOSER_VERSION}" | |
- name: Install tools | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: '7.4' | |
extension: intl, mbstring, json, bcmath | |
coverage: xdebug | |
tools: composer, php-cs-fixer, phpunit:8.5.14, phpcpd, phpmd | |
- name: Version stamp composer.json | |
run: | | |
jq ".version=\"${{ steps.composer-version.outputs.version }}\"" composer.json > composer.version.json # Add "version" property to composer.version.json | |
mv composer.json composer.clean.json | |
mv composer.version.json composer.json # Rename composer.version.json to composer.json | |
- name: Create ZIP archive | |
id: archive | |
env: | |
SEMVER: ${{ steps.gitversion.outputs.fullSemVer }} | |
run: | | |
ARCHIVE=${GITHUB_REPOSITORY#SwedbankPay/}-${SEMVER}.zip | |
echo "Archive: ${ARCHIVE}" | |
echo "::set-output name=name::${ARCHIVE}" | |
zip --recurse-paths --exclude="*.zip" --exclude="vendor/*" --exclude="composer.clean.json" ${ARCHIVE} * | |
unzip -l ${ARCHIVE} | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
name: ${{ steps.archive.outputs.name }} | |
path: ${{ steps.archive.outputs.name }} | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Get Composer cache directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- uses: actions/[email protected] | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: PHPCS check | |
run: ./vendor/bin/phpcs --standard=PSR2 --report=code --ignore=vendor/* --runtime-set ignore_warnings_on_exit true src/ | |
- name: PHP Mess Detector | |
run: ./vendor/bin/phpmd src/ text cleancode,codesize,controversial,design,naming,unusedcode | |
- name: Install Chrome browser | |
run: | | |
sudo apt-get update | |
sudo apt-cache policy google-chrome | |
- name: Install chromedriver | |
uses: nanasess/setup-chromedriver@master | |
#with: | |
#chromedriver-version: '98.0.4758.80' | |
- name: Acceptance tests with codeception | |
env: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
PAYEE_ID: ${{ secrets.PAYEE_ID }} | |
ACCESS_TOKEN_MOBILEPAY: ${{ secrets.ACCESS_TOKEN_MOBILEPAY }} | |
PAYEE_ID_MOBILEPAY: ${{ secrets.PAYEE_ID_MOBILEPAY }} | |
VERSION: ${{ steps.composer-version.outputs.version }} | |
run: | | |
if [ "$ACCESS_TOKEN" != "" ]; then | |
cd ./vendor/bin/ | |
wget https://github.com/SeleniumHQ/selenium/releases/download/selenium-3.141.59/selenium-server-standalone-3.141.59.jar | |
cd ../.. | |
export DISPLAY=:99 | |
chromedriver --url-base=/wd/hub > /dev/null & | |
sudo Xvfb :0 -ac -screen 0 1024x768x24 > /dev/null 2>&1 & | |
xvfb-run java -Dwebdriver.chrome.driver=/usr/local/bin/chromedriver -jar ./vendor/bin/selenium-server-standalone-3.141.59.jar & | |
php -S localhost:8000 -t ./tests/stand > /dev/null & | |
sleep 30 | |
php ./vendor/bin/codecept build | |
php ./vendor/bin/codecept run acceptance | |
fi | |
- name: Unit tests | |
env: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
PAYEE_ID: ${{ secrets.PAYEE_ID }} | |
ACCESS_TOKEN_MOBILEPAY: ${{ secrets.ACCESS_TOKEN_MOBILEPAY }} | |
PAYEE_ID_MOBILEPAY: ${{ secrets.PAYEE_ID_MOBILEPAY }} | |
VERSION: ${{ steps.composer-version.outputs.version }} | |
run: | | |
if [ "$ACCESS_TOKEN" != "" ]; then | |
./vendor/bin/phpunit --configuration=./tests/phpunit.xml --bootstrap=./tests/bootstrap.php --coverage-clover=coverage.xml | |
fi | |
- name: Upload code coverage report to Codecov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
run: bash <(curl -s https://codecov.io/bash) | |
- name: Create GitHub release | |
id: release | |
uses: actions/create-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.release.outputs.upload_url }} | |
asset_path: ${{ steps.archive.outputs.name }} | |
asset_name: ${{ steps.archive.outputs.name }} | |
asset_content_type: application/zip |