Skip to content

Commit

Permalink
feat(#631):first podman test
Browse files Browse the repository at this point in the history
  • Loading branch information
commjoen committed Feb 28, 2023
1 parent c895d08 commit 7a4caf0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/podman-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test container on podman

# Controls when the workflow will run
on:
pull_request:
branches: [ master ]
workflow_dispatch:

permissions:
contents: read

jobs:
test-minikube:
name: Test with podman
runs-on: macos-12
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- name: Install CLI deps
run: |
brew install podman
- name: run container
run: |
podman run jeroenwillemsen/wrongsecrets:1.5.14-k8s-vault

0 comments on commit 7a4caf0

Please sign in to comment.