We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26612f1 commit 3308eafCopy full SHA for 3308eaf
.github/workflows/python-test.yml
@@ -0,0 +1,27 @@
1
+# This workflow will install Python dependencies, run tests and lint with a single version of Python
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
3
+
4
+name: Python application
5
6
+on: workflow_dispatch
7
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ build:
13
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: Set up Python 3.10
19
+ uses: actions/setup-python@v3
20
+ with:
21
+ python-version: "3.10"
22
+ - name: Install dependencies
23
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install thoughtspot_rest_api_v1
26
+ # if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
27
0 commit comments