rename ubuntu workflow to be consistent with others #1
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: native-ubuntu | |
on: [push] | |
jobs: | |
ubuntu-2404: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: install basic dependencies | |
#uses: awalsh128/[email protected] | |
uses: ConorMacBride/[email protected] | |
with: | |
#packages: ansible, git | |
apt: ansible git | |
- name: run playbook | |
run: sudo ansible-playbook --connection=local -i localhost, .test_tidal_all_roles.play.yml | |
ubuntu-2204: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: install basic dependencies | |
#uses: awalsh128/[email protected] | |
uses: ConorMacBride/[email protected] | |
with: | |
#packages: ansible, git | |
apt: ansible git | |
- name: run playbook | |
run: sudo ansible-playbook --connection=local -i localhost, .test_tidal_all_roles.play.yml | |
ubuntu-2004: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: install basic dependencies | |
#uses: awalsh128/[email protected] | |
uses: ConorMacBride/[email protected] | |
with: | |
#packages: ansible, git | |
apt: ansible git | |
- name: run playbook | |
run: sudo ansible-playbook --connection=local -i localhost, .test_tidal_all_roles.play.yml |