Fix SELinux port conflict #11
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 22.04 | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
branches: [] | |
jobs: | |
ansible-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Obtain sources | |
uses: actions/checkout@v3 | |
- name: Test Galaxy role | |
run: > | |
CONT_ID=$(podman run --rm -v ${{ github.workspace }}:/repo -v /sys/fs/cgroup:/sys/fs/cgroup:ro | |
--tmpfs /tmp --tmpfs /run --privileged --detach bviktor/ansible-systemd-ubuntu:22.04) && | |
podman exec ${CONT_ID} /bin/bash -c | |
"if [ -f requirements.yml ]; then ansible-galaxy role install --force -r requirements.yml -p ..; fi && | |
ANSIBLE_ROLES_PATH=.. ANSIBLE_FORCE_COLOR=true ansible-playbook tests/main.yml" && | |
podman stop ${CONT_ID} |