Allow output_format to be defined from ini setting #22
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: 'Package' | |
on: | |
pull_request: | |
jobs: | |
package: | |
name: 'Package' | |
runs-on: 'ubuntu-20.04' | |
steps: | |
- name: 'Check out repository' | |
uses: 'actions/checkout@v2' | |
with: | |
path: 'ext' | |
- name: 'Install dependencies' | |
run: 'sudo apt-get -y install php7.4-dev libjudy-dev' | |
- name: 'Package and verify package' | |
run: './ext/.github/workflows/package/package.sh' | |
- name: 'Archive package' | |
uses: 'actions/upload-artifact@v2' | |
with: | |
path: 'ext/memprof.tgz' |