Skip to content

[OP-1123] Bumped GHAs actions/checkout@v2 -> v4 #172

[OP-1123] Bumped GHAs actions/checkout@v2 -> v4

[OP-1123] Bumped GHAs actions/checkout@v2 -> v4 #172

Workflow file for this run

name: CI
# on:
# pull_request:
# branches:
# - master
on:
push:
branches:
- OP-1123-GHA-bump-deprecated-gha
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
max-parallel: 1
matrix:
php-version: [ '7.4', '8.0' ]
concurrency:
group: ci-tests-${{ github.ref }}-${{ matrix.php-version }}
cancel-in-progress: true
env:
WFIRMA_API_COMPANY_ID: ${{ secrets.WFIRMA_API_COMPANY }}
WFIRMA_API_ACCESS_KEY: ${{ secrets.WFIRMA_API_ACCESS_KEY }}
WFIRMA_API_SECRET_KEY: ${{ secrets.WFIRMA_API_SECRET_KEY }}
WFIRMA_API_APP_KEY: ${{ secrets.WFIRMA_API_APP_KEY }}
WFIRMA_API_URL: ${{ secrets.WFIRMA_API_URL }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: composer install
run: composer install
- name: make ci
run: make ci