bump release to 0.30 #52
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
on: push | |
name: Test | |
jobs: | |
test: | |
strategy: | |
matrix: | |
version: ["3.9", "3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "${{ matrix.version }}" | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Install client | |
run: pip install . | |
- name: Sanity Check CLI | |
run: | | |
cirun -v | |
cirun --version | |
cirun -h | |
cirun repo -h | |
cirun repo add -h | |
cirun repo remove -h | |
cirun cloud -h | |
cirun cloud connect -h | |
cirun cloud connect aws -h | |
cirun cloud connect azure -h | |
cirun cloud connect gcp -h | |
cirun cloud connect openstack -h | |
cirun cloud connect oracle -h | |
- name: Run Python Tests | |
run: pytest -vv |