Skip to content

Commit

Permalink
ci: smoke test for pikaraoke
Browse files Browse the repository at this point in the history
  • Loading branch information
mariugul committed Sep 3, 2024
1 parent b3c09c5 commit b671fcf
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
branches:
- master

env:
PYTHON_VERSION: '3.9'

jobs:
code-quality:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -51,3 +54,35 @@ jobs:
steps:
- name: Run commitlint
uses: opensource-nepal/commitlint@v1

smoketest:
runs-on: ${{ matrix.os }}
name: Smoke Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install pipx
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pipx
python3 -m pipx ensurepath
- name: Install Poetry
run: |
pipx install poetry
- name: Install Package
run: poetry install --no-interaction --no-ansi

- name: Verify Install
run: poetry run pikaraoke --help

0 comments on commit b671fcf

Please sign in to comment.