![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/spomky-labs/aes-key-wrap/.github/workflows/ |
name: Mutation Testing on: [push] jobs: tests: runs-on: ${{ matrix.operating-system }} strategy: matrix: operating-system: [ubuntu-latest] php-versions: ['8.0'] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v2 with: ref: ${{ github.head_ref }} - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} extensions: json, mbstring, openssl, sqlite3 coverage: xdebug - name: Install Composer dependencies run: | composer update --no-progress --no-suggest --prefer-dist --optimize-autoloader - name: Fetch Git base reference run: git fetch --depth=1 origin $GITHUB_BASE_REF - name: Infection run: make ci-mu