CESNET-MCCG2 got image-sync enabled and relatedegi-ops project #434
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: Python testing | |
on: | |
- pull_request | |
- push | |
jobs: | |
test: | |
name: test python code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Test cloud-info-generator | |
run: | | |
cd cloud-info | |
pip install -r requirements.txt | |
pip install . | |
cd cloud_info_catchall | |
python3 -m unittest |