Add Ubuntu 24 to tested/supported versions #407
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: CI | |
on: | |
push: | |
pull_request: | |
env: | |
galaxy-name: "dokku_bot.ansible_dokku" | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- uses: pre-commit/[email protected] | |
readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install requirements | |
run: pip install -r requirements.txt | |
- name: Update README | |
run: | | |
set -e; | |
make generate; | |
if [[ $(git diff) ]]; then | |
echo "Please run `make generate`"; | |
git status --short; | |
git diff; | |
exit 1; | |
fi | |
molecule: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
distro: [ubuntu2004, ubuntu2204, ubuntu2404, debian11, debian12] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ env.galaxy-name }} | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Upgrade pip | |
run: | | |
pip install --upgrade pip wheel | |
pip --version | |
- name: Install requirements | |
run: | | |
pip install -r requirements.txt | |
working-directory: ${{ env.galaxy-name }} | |
- name: Create role requirements | |
run: make ansible-role-requirements.yml | |
working-directory: ${{ env.galaxy-name }} | |
# See https://github.com/geerlingguy/raspberry-pi-dramble/issues/166 | |
- name: Force GitHub Actions' docker daemon to use vfs. | |
run: | | |
sudo apt install -y jq | |
sudo systemctl stop docker | |
echo '{ "exec-opts": ["native.cgroupdriver=cgroupfs"], "cgroup-parent": "/actions_job", "storage-driver":"vfs"}' | sudo tee /etc/docker/daemon.json | |
sudo systemctl start docker | |
- name: Run molecule | |
run: molecule test | |
working-directory: ${{ env.galaxy-name }} | |
env: | |
MOLECULE_DISTRO: ${{ matrix.distro }} | |
release: | |
name: Publish to ansible-galaxy | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
needs: [pre-commit, molecule] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: robertdebock/[email protected] | |
with: | |
galaxy_api_key: ${{ secrets.GALAXY_API_KEY }} |