add docker desktop #380
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: conftest | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
paths-ignore: | |
- "**.md" | |
- "**.svg" | |
- ".github/**" | |
- "!.github/workflows/conftest.yaml" | |
jobs: | |
conftest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- name: install conftest | |
run: | | |
wget https://github.com/open-policy-agent/conftest/releases/download/v0.24.0/conftest_0.24.0_Linux_x86_64.tar.gz | |
tar xzf conftest_0.24.0_Linux_x86_64.tar.gz | |
sudo mv conftest /usr/local/bin | |
- name: conftest | |
working-directory: contents/open-policy-agent | |
run: | | |
conftest test conftest/manifests/valid/* --policy conftest/policy |