add php82 #10
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: packer | |
on: | |
- push | |
jobs: | |
packer: | |
runs-on: ubuntu-latest | |
name: Run Packer and cookstyle | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup `packer` | |
uses: hashicorp/setup-packer@main | |
with: | |
version: "latest" | |
- name: Run `packer init` | |
run: "packer init packer.pkr.hcl" | |
- name: Run `packer validate` | |
run: "packer validate packer.pkr.hcl" | |
- name: Install CINC workstation | |
run: curl -L https://omnitruck.cinc.sh/install.sh | sudo bash -s -- -P cinc-workstation -v 22 | |
- name: Run Cookstyle | |
run: cookstyle |