Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/github-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ jobs:
run: |
ls ${{ github.workspace }}
- run: echo "This job's status is ${{ job.status }}."
- run: echo "End of the workflow"

4 changes: 2 additions & 2 deletions .github/workflows/issues.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Close as a feature
name: Close as a feature.
on:
issues:
types: [labeled]
Expand All @@ -14,4 +14,4 @@ jobs:

We take all the requests for features seriously and have passed this on to the internal teams for their consideration.

Because any feature requires further maintenance and support in the long term by this team, we would like to exercise caution into adding new features. If this feature is something that can be implemented independently, please consider forking this repository and adding the feature.""
Because any feature requires further maintenance and support in the long term by this team, we would like to exercise caution into adding new features. If this feature is something that can be implemented independently, please consider forking this repository and adding the feature.""
29 changes: 29 additions & 0 deletions .github/workflows/python_versions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Install SDK with different Python versions.
on:
push:
branches:
- 'test'
jobs:
install-sdk:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['2.7', '3.6', '3.7', '3.8', 'pypy-2.7', 'pypy-3.6']
exclude:
- os: ubuntu-latest
python-version: '3.8'
- os: windows-latest
python-version: '3.6'
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install Cohesity Python SDK
run: python -m pip install cohesity_management_sdk
- name: Check for Cohesity Python SDK
run: pip list | grep cohesity
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@