Skip to content

Pypi smoke tests

Pypi smoke tests #873

Workflow file for this run

# This workflow will install tabcmd 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
# maybe we want this triggered after the publish-pypi workflow?
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 Tabcmd
run: |
pip uninstall tabcmd
pip install tabcmd
- name: Launch app
run: |
tabcmd -v --language fr
tabcmd help