Fix syntax error #12
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: ubuntu-homebrew-podman | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Install podman | |
run: | | |
brew install podman | |
brew install crun | |
brew services start podman | |
- name: Display versions | |
run: | | |
podman -v | |
crun -v | |
podman info | |
- name: Run container | |
run: | | |
podman --log-level debug run -it -p 8888:8888 nginxdemos/nginx-hello:plain-text | |