add basic CI back in #1
Workflow file for this run
This file contains hidden or 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
--- | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout chi-in-a-box | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
version: "0.6.4" | |
- name: install python deps | |
cmd: | | |
uv venv .venv | |
source .venv/bin/activate | |
uv pip install \ | |
-r requirements.txt \ | |
git+https://https://github.com/openstack/kolla-ansible@unmaintained/2023.1 | |
- name: generate kolla passwords | |
cmd: | | |
cp site-config/passwords.yml{.example,} | |
kolla-genpwd -p site-config/passwords.yml |