[CMSP-726] switch to gha #6
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: Test | |
on: | |
pull_request: | |
release: | |
types: [created] | |
permissions: | |
contents: write | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: quay.io/pantheon-public/docker-updatinator:3.x | |
options: --user root | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Composer Dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: Run Update Tool Whoami | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Pantheon Automation" | |
./update-tool whoami | |
- name: Run tests | |
run: composer test |