Fixed resource name for NERC-OCP-EDU in daily billing command #244
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
| name: test-functional-microstack | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.12 | |
| - name: Install ColdFront and plugin | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r test-requirements.txt | |
| pip install -e . | |
| - name: Install and start Ceph RadosGW | |
| run: | | |
| sudo ./ci/radosgw.sh | |
| - name: Install and start Microstack | |
| run: | | |
| ./ci/microstack.sh | |
| - name: Run functional tests | |
| run: | | |
| ./ci/run_functional_tests_openstack.sh |