forked from tableau/server-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 1004 Bytes
/
pypi-smoke-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This workflow will install TSC from pypi and validate that it runs. For more information see:
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Pypi smoke tests
on:
workflow_dispatch:
schedule:
- cron: 0 11 * * * # Every day at 11AM UTC (7AM EST)
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.x']
runs-on: ${{ matrix.os }}
steps:
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: pip install
run: |
pip uninstall tableauserverclient
pip install tableauserverclient
- name: Launch app
run: |
python -c "import tableauserverclient as TSC
server = TSC.Server('http://example.com', use_server_version=False)"